chore: rm reth-interfaces from bin stages (#8484)

This commit is contained in:
Matthias Seitz
2024-05-29 17:35:47 +02:00
committed by GitHub
parent d388fc0bec
commit bab8aaa29f
3 changed files with 7 additions and 8 deletions

1
Cargo.lock generated
View File

@ -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",

View File

@ -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

View File

@ -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;