Skip to content

Commit

Permalink
chore: bump revm to 18 (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
prestwich authored Nov 28, 2024
1 parent 91d8636 commit 20cc895
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trevm"
version = "0.14.3"
version = "0.15.0"
rust-version = "1.82.0"
edition = "2021"
authors = ["init4"]
Expand Down Expand Up @@ -34,13 +34,13 @@ alloy-sol-types = { version = "0.8.8", default-features = false }

alloy = { version = "=0.5.4", default-features = false, features = ["consensus", "rpc-types-mev", "eips", "k256"] }

revm = { version = "17.1.0", default-features = false }
revm = { version = "18.0.0", default-features = false }

zenith-types = { version = "0.10", optional = true }

[dev-dependencies]
alloy-rlp = { version = "0.3", default-features = false }
revm = { version = "17.1.0", features = [
revm = { version = "18.0.0", features = [
"test-utils",
"serde-json",
"std",
Expand Down
6 changes: 3 additions & 3 deletions src/journal/coder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -710,9 +710,9 @@ mod test {
let created_acc = AcctDiff {
outcome: created_outcome,
storage_diff: vec![
(U256::from(3), Cow::Owned(new_slot.clone())),
(U256::from(4), Cow::Owned(changed_slot.clone())),
(U256::from(5), Cow::Owned(deleted_slot.clone())),
(U256::from(3), Cow::Owned(new_slot)),
(U256::from(4), Cow::Owned(changed_slot)),
(U256::from(5), Cow::Owned(deleted_slot)),
]
.into_iter()
.collect(),
Expand Down

0 comments on commit 20cc895

Please sign in to comment.