Skip to content

Commit 60edc6c

Browse files
Rjectedmattsse
authored andcommitted
chore: fix deps sanity check (#4462)
1 parent 19e03ee commit 60edc6c

File tree

2 files changed

+2
-4
lines changed
  • crates
    • consensus/beacon/src/engine
    • transaction-pool/src/pool

2 files changed

+2
-4
lines changed

crates/consensus/beacon/src/engine/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1888,9 +1888,7 @@ mod tests {
18881888
BeaconForkChoiceUpdateError,
18891889
};
18901890
use assert_matches::assert_matches;
1891-
use reth_primitives::{
1892-
stage::StageCheckpoint, ChainSpec, ChainSpecBuilder, PruneModes, H256, MAINNET,
1893-
};
1891+
use reth_primitives::{stage::StageCheckpoint, ChainSpec, ChainSpecBuilder, H256, MAINNET};
18941892
use reth_provider::{BlockWriter, ProviderFactory};
18951893
use reth_rpc_types::engine::{
18961894
ExecutionPayloadV1, ForkchoiceState, ForkchoiceUpdated, PayloadStatus,

crates/transaction-pool/src/pool/best.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ pub(crate) struct BestTransactions<T: TransactionOrdering> {
6666
pub(crate) independent: BTreeSet<PendingTransaction<T>>,
6767
/// There might be the case where a yielded transactions is invalid, this will track it.
6868
pub(crate) invalid: HashSet<TxHash>,
69-
/// Used to recieve any new pending transactions that have been added to the pool after this
69+
/// Used to receive any new pending transactions that have been added to the pool after this
7070
/// iterator was snapshotted
7171
///
7272
/// These new pending transactions are inserted into this iterator's pool before yielding the

0 commit comments

Comments
 (0)