mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 19:09:54 +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-evm-ethereum",
|
||||||
"reth-execution-errors",
|
"reth-execution-errors",
|
||||||
"reth-exex",
|
"reth-exex",
|
||||||
"reth-interfaces",
|
|
||||||
"reth-network-p2p",
|
"reth-network-p2p",
|
||||||
"reth-network-types",
|
"reth-network-types",
|
||||||
"reth-primitives",
|
"reth-primitives",
|
||||||
|
|||||||
@ -50,8 +50,8 @@ reth-primitives = { workspace = true, features = ["test-utils", "arbitrary"] }
|
|||||||
reth-db = { workspace = true, features = ["test-utils", "mdbx"] }
|
reth-db = { workspace = true, features = ["test-utils", "mdbx"] }
|
||||||
reth-evm-ethereum.workspace = true
|
reth-evm-ethereum.workspace = true
|
||||||
reth-execution-errors.workspace = true
|
reth-execution-errors.workspace = true
|
||||||
reth-interfaces = { workspace = true, features = ["test-utils"] }
|
|
||||||
reth-consensus = { 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-downloaders.workspace = true
|
||||||
reth-revm.workspace = true
|
reth-revm.workspace = true
|
||||||
reth-static-file.workspace = true
|
reth-static-file.workspace = true
|
||||||
|
|||||||
@ -7,18 +7,18 @@ use reth_db::{
|
|||||||
transaction::{DbTx, DbTxMut},
|
transaction::{DbTx, DbTxMut},
|
||||||
DatabaseEnv,
|
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,
|
||||||
generators::{
|
generators::{
|
||||||
random_block_range, random_changeset_range, random_contract_account_range,
|
random_block_range, random_changeset_range, random_contract_account_range,
|
||||||
random_eoa_accounts,
|
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 reth_trie::StateRoot;
|
||||||
use std::{collections::BTreeMap, fs, path::Path, sync::Arc};
|
use std::{collections::BTreeMap, fs, path::Path, sync::Arc};
|
||||||
use tokio::runtime::Handle;
|
use tokio::runtime::Handle;
|
||||||
|
|||||||
Reference in New Issue
Block a user