mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 19:09:54 +00:00
chore: fix doc lints (#4639)
This commit is contained in:
@ -79,12 +79,11 @@
|
||||
//!
|
||||
//! The lowest layer is the actual pool implementations that manages (validated) transactions:
|
||||
//! [`TxPool`](crate::pool::txpool::TxPool). This is contained in a higher level pool type that
|
||||
//! guards the low level pool and handles additional listeners or metrics:
|
||||
//! [`PoolInner`](crate::pool::PoolInner)
|
||||
//! guards the low level pool and handles additional listeners or metrics: [`PoolInner`].
|
||||
//!
|
||||
//! The transaction pool will be used by separate consumers (RPC, P2P), to make sharing easier, the
|
||||
//! [`Pool`](crate::Pool) type is just an `Arc` wrapper around `PoolInner`. This is the usable type
|
||||
//! that provides the `TransactionPool` interface.
|
||||
//! [`Pool`] type is just an `Arc` wrapper around `PoolInner`. This is the usable type that provides
|
||||
//! the `TransactionPool` interface.
|
||||
//!
|
||||
//!
|
||||
//! ## Blob Transactions
|
||||
|
||||
@ -26,7 +26,7 @@ pub(crate) struct BlobTransactions<T: PoolTransaction> {
|
||||
all: BTreeSet<BlobTransaction<T>>,
|
||||
/// Keeps track of the size of this pool.
|
||||
///
|
||||
/// See also [`PoolTransaction::size`](crate::traits::PoolTransaction::size).
|
||||
/// See also [`PoolTransaction::size`].
|
||||
size_of: SizeTracker,
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user