chore: phase out reth-primitives (#16151)

This commit is contained in:
Matthias Seitz
2025-05-11 12:41:57 +02:00
committed by GitHub
parent 4f00ed7bed
commit 2767ffd3bd
3 changed files with 6 additions and 3 deletions

View File

@@ -21,7 +21,8 @@ alloy-rpc-types-debug.workspace = true
# reth
reth-ethereum-consensus.workspace = true
reth-primitives.workspace = true
reth-primitives-traits.workspace = true
reth-ethereum-primitives.workspace = true
reth-errors.workspace = true
reth-evm.workspace = true
reth-evm-ethereum.workspace = true

View File

@@ -12,9 +12,10 @@ use reth_chainspec::ChainSpec;
use reth_consensus::{Consensus, HeaderValidator};
use reth_errors::ConsensusError;
use reth_ethereum_consensus::{validate_block_post_execution, EthBeaconConsensus};
use reth_ethereum_primitives::TransactionSigned;
use reth_evm::{execute::Executor, ConfigureEvm};
use reth_evm_ethereum::execute::EthExecutorProvider;
use reth_primitives::{RecoveredBlock, TransactionSigned};
use reth_primitives_traits::RecoveredBlock;
use reth_revm::state::Bytecode;
use reth_trie_common::{HashedPostState, KeccakKeyHasher};
use reth_trie_sparse::{blinded::DefaultBlindedProviderFactory, SparseStateTrie};