chore: flatten beacon-consensus test deps (#7796)

This commit is contained in:
Matthias Seitz
2024-04-22 14:12:31 +02:00
committed by GitHub
parent 8382529f7a
commit 31801c7bc5
3 changed files with 6 additions and 3 deletions

3
Cargo.lock generated
View File

@ -6162,9 +6162,10 @@ dependencies = [
"reth-db", "reth-db",
"reth-downloaders", "reth-downloaders",
"reth-engine-primitives", "reth-engine-primitives",
"reth-ethereum-engine-primitives",
"reth-evm-ethereum",
"reth-interfaces", "reth-interfaces",
"reth-metrics", "reth-metrics",
"reth-node-ethereum",
"reth-payload-builder", "reth-payload-builder",
"reth-payload-validator", "reth-payload-validator",
"reth-primitives", "reth-primitives",

View File

@ -54,7 +54,8 @@ reth-rpc-types-compat.workspace = true
reth-tracing.workspace = true reth-tracing.workspace = true
reth-revm.workspace = true reth-revm.workspace = true
reth-downloaders.workspace = true reth-downloaders.workspace = true
reth-node-ethereum.workspace = true reth-evm-ethereum.workspace = true
reth-ethereum-engine-primitives.workspace = true
reth-config.workspace = true reth-config.workspace = true
assert_matches.workspace = true assert_matches.workspace = true

View File

@ -8,6 +8,8 @@ use reth_blockchain_tree::{
}; };
use reth_config::config::EtlConfig; use reth_config::config::EtlConfig;
use reth_db::{test_utils::TempDatabase, DatabaseEnv as DE}; use reth_db::{test_utils::TempDatabase, DatabaseEnv as DE};
use reth_ethereum_engine_primitives::EthEngineTypes;
use reth_evm_ethereum::EthEvmConfig;
type DatabaseEnv = TempDatabase<DE>; type DatabaseEnv = TempDatabase<DE>;
use reth_downloaders::{ use reth_downloaders::{
bodies::bodies::BodiesDownloaderBuilder, bodies::bodies::BodiesDownloaderBuilder,
@ -20,7 +22,6 @@ use reth_interfaces::{
sync::NoopSyncStateUpdater, sync::NoopSyncStateUpdater,
test_utils::{NoopFullBlockClient, TestConsensus}, test_utils::{NoopFullBlockClient, TestConsensus},
}; };
use reth_node_ethereum::{EthEngineTypes, EthEvmConfig};
use reth_payload_builder::test_utils::spawn_test_payload_service; use reth_payload_builder::test_utils::spawn_test_payload_service;
use reth_primitives::{BlockNumber, ChainSpec, FinishedExExHeight, PruneModes, B256}; use reth_primitives::{BlockNumber, ChainSpec, FinishedExExHeight, PruneModes, B256};
use reth_provider::{ use reth_provider::{