diff --git a/Cargo.toml b/Cargo.toml index 84efeeba..fbd445c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ clippy.lint_groups_priority = "allow" alloy-sol-types = "0.7" alloy-primitives = "0.7" alloy-rpc-types = { version = "0.1", features = ["eth", "trace"] } -revm = { version = "9.0", git = "https://github.com/bluealloy/revm.git", rev = "dd98b3b", default-features = false, features = [ +revm = { version = "9.0", git = "https://github.com/bluealloy/revm.git", rev = "41e2f7f", default-features = false, features = [ "std", ] } diff --git a/src/tracing/mod.rs b/src/tracing/mod.rs index 208682bf..ea96d34f 100644 --- a/src/tracing/mod.rs +++ b/src/tracing/mod.rs @@ -180,7 +180,7 @@ impl TracingInspector { to: &Address, value: &U256, ) -> bool { - if context.precompiles.contains_key(to) { + if context.precompiles.contains(to) { // only if this is _not_ the root call return self.is_deep() && value.is_zero(); }