Skip to content

Commit

Permalink
chore: fix deps sanity check (#4462)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rjected authored and mattsse committed Sep 4, 2023
1 parent 19e03ee commit 60edc6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions crates/consensus/beacon/src/engine/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion crates/transaction-pool/src/pool/best.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub(crate) struct BestTransactions<T: TransactionOrdering> {
pub(crate) independent: BTreeSet<PendingTransaction<T>>,
/// There might be the case where a yielded transactions is invalid, this will track it.
pub(crate) invalid: HashSet<TxHash>,
/// 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
Expand Down

0 comments on commit 60edc6c

Please sign in to comment.