Skip to content

Commit

Permalink
deps: bump revm (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhirin committed Jun 17, 2024
1 parent 08e9886 commit 4fe17f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
] }

Expand Down
2 changes: 1 addition & 1 deletion src/tracing/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 4fe17f0

Please sign in to comment.