Skip to content

Commit

Permalink
Failing doctest fix
Browse files Browse the repository at this point in the history
  • Loading branch information
citizen-stig committed Aug 7, 2024
1 parent bfd38e4 commit 66a9c70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/transaction-pool/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
//!
//! ```
//! use futures_util::Stream;
//! use reth_chain_state::CanonStateNotification
//! use reth_chain_state::CanonStateNotification;
//! use reth_chainspec::{MAINNET, ChainSpecProvider};
//! use reth_storage_api::{BlockReaderIdExt, StateProviderFactory};
//! use reth_tasks::TokioTaskExecutor;
Expand Down Expand Up @@ -276,7 +276,7 @@ where

impl<Client, S> EthTransactionPool<Client, S>
where
Client: StateProviderFactory + reth_storage_api::BlockReaderIdExt + Clone + 'static,
Client: StateProviderFactory + reth_provider::BlockReaderIdExt + Clone + 'static,
S: BlobStore,
{
/// Returns a new [`Pool`] that uses the default [`TransactionValidationTaskExecutor`] when
Expand Down

0 comments on commit 66a9c70

Please sign in to comment.