diff --git a/crates/consensus/beacon/src/engine/mod.rs b/crates/consensus/beacon/src/engine/mod.rs index 5b5bd6413a44..5a8279cf547d 100644 --- a/crates/consensus/beacon/src/engine/mod.rs +++ b/crates/consensus/beacon/src/engine/mod.rs @@ -1888,9 +1888,7 @@ mod tests { BeaconForkChoiceUpdateError, }; use assert_matches::assert_matches; - use reth_primitives::{ - stage::StageCheckpoint, ChainSpec, ChainSpecBuilder, PruneModes, H256, MAINNET, - }; + use reth_primitives::{stage::StageCheckpoint, ChainSpec, ChainSpecBuilder, H256, MAINNET}; use reth_provider::{BlockWriter, ProviderFactory}; use reth_rpc_types::engine::{ ExecutionPayloadV1, ForkchoiceState, ForkchoiceUpdated, PayloadStatus, diff --git a/crates/transaction-pool/src/pool/best.rs b/crates/transaction-pool/src/pool/best.rs index 5fc5ebc93137..6d87b7fe3220 100644 --- a/crates/transaction-pool/src/pool/best.rs +++ b/crates/transaction-pool/src/pool/best.rs @@ -66,7 +66,7 @@ pub(crate) struct BestTransactions { pub(crate) independent: BTreeSet>, /// There might be the case where a yielded transactions is invalid, this will track it. pub(crate) invalid: HashSet, - /// Used to recieve any new pending transactions that have been added to the pool after this + /// Used to receive any new pending transactions that have been added to the pool after this /// iterator was snapshotted /// /// These new pending transactions are inserted into this iterator's pool before yielding the