mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
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:
@ -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",
|
||||
|
||||
@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user