Skip to content

Commit

Permalink
fix EVM error
Browse files Browse the repository at this point in the history
  • Loading branch information
elfedy committed Dec 24, 2024
1 parent f54949d commit 6d12151
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/evm/core/src/backend/strategy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ impl BackendStrategyRunner for EvmBackendStrategyRunner {
) -> Result<ResultAndState> {
let mut evm = crate::utils::new_evm_with_inspector(backend, env.clone(), inspector);

let res = evm.transact().wrap_err("backend: failed while inspecting")?;
let res = evm.transact().wrap_err("EVM error")?;

env.env = evm.context.evm.inner.env;

Expand Down

0 comments on commit 6d12151

Please sign in to comment.