Skip to content

Commit

Permalink
chore: bump revm version (paradigmxyz#5187)
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby authored Oct 26, 2023
1 parent 5d94aef commit 8f0a415
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ reth-ecies = { path = "./crates/net/ecies" }
reth-tracing = { path = "./crates/tracing" }
reth-tokio-util = { path = "crates/tokio-util" }
# revm
revm = { git = "https://github.com/bluealloy/revm", rev = "6ca6c08d37714cc6660ddfe5e542cdabace08962" }
revm-primitives = { git = "https://github.com/bluealloy/revm", rev = "6ca6c08d37714cc6660ddfe5e542cdabace08962" }
revm = { git = "https://github.com/bluealloy/revm", rev = "0d78d1eb304a2ce41ddac8f03206f5a316af247b" }
revm-primitives = { git = "https://github.com/bluealloy/revm", rev = "0d78d1eb304a2ce41ddac8f03206f5a316af247b" }

## eth
alloy-primitives = "0.4"
Expand Down
3 changes: 1 addition & 2 deletions crates/revm/revm-inspectors/src/tracing/js/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,7 @@ impl JsInspector {
if !self.precompiles_registered {
return
}
let precompiles =
PrecompileList(precompiles.addresses().into_iter().map(Into::into).collect());
let precompiles = PrecompileList(precompiles.addresses().into_iter().copied().collect());

let _ = precompiles.register_callable(&mut self.ctx);

Expand Down

0 comments on commit 8f0a415

Please sign in to comment.