diff --git a/examples/custom-beacon-withdrawals/src/main.rs b/examples/custom-beacon-withdrawals/src/main.rs index 281d3599ce44..3ebbac93934b 100644 --- a/examples/custom-beacon-withdrawals/src/main.rs +++ b/examples/custom-beacon-withdrawals/src/main.rs @@ -19,9 +19,12 @@ use reth::{ }; use reth_chainspec::{ChainSpec, EthereumHardforks}; use reth_ethereum_evm::EthEvmConfig; -use reth_evm::execute::{ - BlockExecutionError, BlockExecutionStrategy, BlockExecutionStrategyFactory, ExecuteOutput, - InternalBlockExecutionError, +use reth_evm::{ + execute::{ + BlockExecutionError, BlockExecutionStrategy, BlockExecutionStrategyFactory, ExecuteOutput, + InternalBlockExecutionError, + }, + Evm, }; use reth_node_ethereum::{node::EthereumAddOns, BasicBlockExecutorProvider, EthereumNode}; use reth_primitives::{EthPrimitives, Receipt, RecoveredBlock}; diff --git a/examples/custom-evm/src/main.rs b/examples/custom-evm/src/main.rs index f5d6ca5da0a7..fc5d233d4706 100644 --- a/examples/custom-evm/src/main.rs +++ b/examples/custom-evm/src/main.rs @@ -23,7 +23,7 @@ use reth::{ transaction_pool::{PoolTransaction, TransactionPool}, }; use reth_chainspec::{Chain, ChainSpec}; -use reth_ethereum_evm::EthEvmConfig; +use reth_ethereum_evm::{EthEvm, EthEvmConfig}; use reth_evm::env::EvmEnv; use reth_node_api::{ ConfigureEvm, ConfigureEvmEnv, FullNodeTypes, NextBlockEnvAttributes, NodeTypes,