This commit is contained in:
Yong Kang
2025-10-22 04:02:55 +00:00
parent e73be56f82
commit aded7c88bb
2 changed files with 2 additions and 2 deletions

View File

@@ -15,6 +15,7 @@ use crate::tree::{
};
use alloy_evm::{block::StateChangeSource, ToTxEnv};
use alloy_primitives::B256;
use crossbeam_channel::Sender as CrossbeamSender;
use executor::WorkloadExecutor;
use multiproof::{SparseTrieUpdate, *};
use parking_lot::RwLock;
@@ -45,7 +46,6 @@ use std::sync::{
mpsc::{self, channel},
Arc,
};
use crossbeam_channel::Sender as CrossbeamSender;
use tracing::{debug, instrument, warn};
mod configured_sparse_trie;

View File

@@ -24,6 +24,7 @@ use alloy_consensus::transaction::TxHashRef;
use alloy_eips::Typed2718;
use alloy_evm::Database;
use alloy_primitives::{keccak256, map::B256Set, B256};
use crossbeam_channel::Sender as CrossbeamSender;
use metrics::{Counter, Gauge, Histogram};
use reth_evm::{execute::ExecutableTxFor, ConfigureEvm, Evm, EvmFor, SpecFor};
use reth_metrics::Metrics;
@@ -39,7 +40,6 @@ use std::{
},
time::Instant,
};
use crossbeam_channel::Sender as CrossbeamSender;
use tracing::{debug, trace, warn};
/// A wrapper for transactions that includes their index in the block.