From 2a62f2d156f5b0b5370e5693da09b8124677530e Mon Sep 17 00:00:00 2001 From: Jacob Kaufmann Date: Sat, 12 Aug 2023 13:24:26 -0600 Subject: [PATCH] docs(tx-pool): fix pending tx listener typo (#4171) --- crates/transaction-pool/src/traits.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/transaction-pool/src/traits.rs b/crates/transaction-pool/src/traits.rs index e89c94385b..d3572c52b3 100644 --- a/crates/transaction-pool/src/traits.rs +++ b/crates/transaction-pool/src/traits.rs @@ -127,7 +127,7 @@ pub trait TransactionPool: Send + Sync + Clone { /// Returns a new stream that yields new valid transactions added to the pool. fn new_transactions_listener(&self) -> Receiver>; - /// Returns a new Stream that yields new transactions added to the basefee-pool. + /// Returns a new Stream that yields new transactions added to the pending sub-pool. /// /// This is a convenience wrapper around [Self::new_transactions_listener] that filters for /// [SubPool::Pending](crate::SubPool).