fix: call bundle recursion (#13425)

This commit is contained in:
Matthias Seitz
2024-12-17 14:33:14 +01:00
committed by GitHub
parent dc7818cdf1
commit 30d48cc97f
3 changed files with 11 additions and 11 deletions

View File

@ -40,6 +40,8 @@ use tokio::sync::mpsc::Receiver;
/// The `PeerId` type.
pub type PeerId = alloy_primitives::B512;
/// Helper type alias to access [`PoolTransaction`] for a given [`TransactionPool`].
pub type PoolTx<P> = <P as TransactionPool>::Transaction;
/// Helper type alias to access [`PoolTransaction::Consensus`] for a given [`TransactionPool`].
pub type PoolConsensusTx<P> = <<P as TransactionPool>::Transaction as PoolTransaction>::Consensus;