chore: move primitives/exex to reth-exex-types (#8677)

This commit is contained in:
joshieDo
2024-06-07 18:31:24 +02:00
committed by GitHub
parent d0e3504ecc
commit a7152eda37
13 changed files with 55 additions and 9 deletions

View File

@ -66,6 +66,7 @@ reth-evm-ethereum.workspace = true
reth-ethereum-engine-primitives.workspace = true
reth-config.workspace = true
reth-testing-utils.workspace = true
reth-exex-types.workspace = true
reth-prune-types.workspace = true
assert_matches.workspace = true

View File

@ -16,12 +16,13 @@ use reth_downloaders::{
use reth_ethereum_engine_primitives::EthEngineTypes;
use reth_evm::{either::Either, test_utils::MockExecutorProvider};
use reth_evm_ethereum::execute::EthExecutorProvider;
use reth_exex_types::FinishedExExHeight;
use reth_network_p2p::{
bodies::client::BodiesClient, headers::client::HeadersClient, sync::NoopSyncStateUpdater,
test_utils::NoopFullBlockClient,
};
use reth_payload_builder::test_utils::spawn_test_payload_service;
use reth_primitives::{BlockNumber, ChainSpec, FinishedExExHeight, B256};
use reth_primitives::{BlockNumber, ChainSpec, B256};
use reth_provider::{
providers::BlockchainProvider, test_utils::create_test_provider_factory_with_chain_spec,
BundleStateWithReceipts, HeaderSyncMode,