Skip to content

Commit

Permalink
fix downcast
Browse files Browse the repository at this point in the history
  • Loading branch information
nbaztec committed Dec 23, 2024
1 parent 4d2ff7b commit 1e89006
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/strategy/zksync/src/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ impl BackendStrategyRunner for ZksyncBackendStrategyRunner {
inspector: &mut dyn InspectorExt,
inspect_ctx: Box<dyn Any>,
) -> Result<ResultAndState> {
if !is_zksync_inspect_context(&inspect_ctx) {
if !is_zksync_inspect_context(inspect_ctx.as_ref()) {
return self.evm.inspect(backend, env, inspector, inspect_ctx);
}

Expand Down

0 comments on commit 1e89006

Please sign in to comment.