mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: rm reth-interfaces from bin stages (#8484)
This commit is contained in:
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -7965,7 +7965,6 @@ dependencies = [
|
||||
"reth-evm-ethereum",
|
||||
"reth-execution-errors",
|
||||
"reth-exex",
|
||||
"reth-interfaces",
|
||||
"reth-network-p2p",
|
||||
"reth-network-types",
|
||||
"reth-primitives",
|
||||
|
||||
@ -50,8 +50,8 @@ reth-primitives = { workspace = true, features = ["test-utils", "arbitrary"] }
|
||||
reth-db = { workspace = true, features = ["test-utils", "mdbx"] }
|
||||
reth-evm-ethereum.workspace = true
|
||||
reth-execution-errors.workspace = true
|
||||
reth-interfaces = { workspace = true, features = ["test-utils"] }
|
||||
reth-consensus = { workspace = true, features = ["test-utils"] }
|
||||
reth-network-p2p = { workspace = true, features = ["test-utils"] }
|
||||
reth-downloaders.workspace = true
|
||||
reth-revm.workspace = true
|
||||
reth-static-file.workspace = true
|
||||
|
||||
@ -7,18 +7,18 @@ use reth_db::{
|
||||
transaction::{DbTx, DbTxMut},
|
||||
DatabaseEnv,
|
||||
};
|
||||
use reth_interfaces::test_utils::{
|
||||
use reth_primitives::{Account, Address, SealedBlock, B256, U256};
|
||||
use reth_stages::{
|
||||
stages::{AccountHashingStage, StorageHashingStage},
|
||||
test_utils::{StorageKind, TestStageDB},
|
||||
};
|
||||
use reth_testing_utils::{
|
||||
generators,
|
||||
generators::{
|
||||
random_block_range, random_changeset_range, random_contract_account_range,
|
||||
random_eoa_accounts,
|
||||
},
|
||||
};
|
||||
use reth_primitives::{Account, Address, SealedBlock, B256, U256};
|
||||
use reth_stages::{
|
||||
stages::{AccountHashingStage, StorageHashingStage},
|
||||
test_utils::{StorageKind, TestStageDB},
|
||||
};
|
||||
use reth_trie::StateRoot;
|
||||
use std::{collections::BTreeMap, fs, path::Path, sync::Arc};
|
||||
use tokio::runtime::Handle;
|
||||
|
||||
Reference in New Issue
Block a user