feat: alloy-evm and new revm integration (#14021)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
Co-authored-by: rakita <rakita@users.noreply.github.com>
This commit is contained in:
Arsenii Kulikov
2025-02-17 23:59:23 +04:00
committed by GitHub
parent bb6dec7ceb
commit 336c3d1fac
142 changed files with 1841 additions and 1929 deletions

View File

@ -53,6 +53,7 @@ reth-trie-common = { workspace = true, features = ["test-utils", "arbitrary"] }
reth-trie = { workspace = true, features = ["test-utils"] }
alloy-consensus.workspace = true
revm-database.workspace = true
# trie
triehash = "0.8"
@ -75,6 +76,7 @@ serde = [
"reth-trie-common/serde",
"reth-provider/serde",
"reth-primitives-traits/serde",
"revm-database/serde",
]
test-utils = [
"triehash",

View File

@ -270,7 +270,8 @@ mod tests {
use reth_db::test_utils::create_test_rw_db;
use reth_db_api::database::Database;
use reth_trie::KeccakKeyHasher;
use revm::{db::BundleState, primitives::AccountInfo};
use revm::state::AccountInfo;
use revm_database::BundleState;
#[test]
fn from_bundle_state_with_rayon() {