Skip to content

Commit

Permalink
chore(bump): revm v7.2, c-kzg v1.0 (paradigmxyz#7240)
Browse files Browse the repository at this point in the history
Co-authored-by: Matthias Seitz <[email protected]>
  • Loading branch information
rakita and mattsse authored Mar 21, 2024
1 parent c868c52 commit ffbe8be
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 19 deletions.
23 changes: 12 additions & 11 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,9 @@ reth-trie = { path = "crates/trie" }
reth-trie-parallel = { path = "crates/trie-parallel" }

# revm
revm = { version = "7.1.0", features = ["std", "secp256k1"], default-features = false }
revm-primitives = { version = "3.0.0", features = ["std"], default-features = false }
revm-inspectors = { git = "https://github.com/paradigmxyz/evm-inspectors", rev = "f96bc1f" }
revm = { version = "7.2.0", features = ["std", "secp256k1"], default-features = false }
revm-primitives = { version = "3.1.0", features = ["std"], default-features = false }
revm-inspectors = { git = "https://github.com/paradigmxyz/evm-inspectors", rev = "2b48b65" }

# eth
alloy-chains = { version = "0.1", feature = ["serde", "rlp", "arbitrary"] }
Expand Down Expand Up @@ -288,7 +288,7 @@ secp256k1 = { version = "0.27.0", default-features = false, features = [
enr = { version = "=0.10.0", default-features = false, features = ["k256"] }

# for eip-4844
c-kzg = "0.4.2"
c-kzg = "1.0.0"

# config
confy = "0.6"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@ use reth_primitives::{
StorageEntry, B256, U256,
};
use reth_trie::HashedPostState;
pub use revm::db::states::OriginalValuesKnown;
use revm::{
db::{states::BundleState, BundleAccount},
primitives::AccountInfo,
};
use std::collections::HashMap;

pub use revm::db::states::OriginalValuesKnown;

/// Bundle state of post execution changes and reverts
#[derive(Default, Debug, Clone, PartialEq, Eq)]
pub struct BundleStateWithReceipts {
Expand Down Expand Up @@ -366,8 +365,7 @@ mod tests {
EmptyDB,
},
primitives::{
Account as RevmAccount, AccountInfo as RevmAccountInfo, AccountStatus, HashMap,
StorageSlot,
Account as RevmAccount, AccountInfo as RevmAccountInfo, AccountStatus, StorageSlot,
},
DatabaseCommit, State,
};
Expand Down

0 comments on commit ffbe8be

Please sign in to comment.