mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
feat: use network tx for Pool::Pooled (#13159)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
@ -651,7 +651,10 @@ impl<Node: FullNodeTypes> BuilderContext<Node> {
|
||||
pub fn start_network<Pool>(&self, builder: NetworkBuilder<(), ()>, pool: Pool) -> NetworkHandle
|
||||
where
|
||||
Pool: TransactionPool<
|
||||
Transaction: PoolTransaction<Consensus = reth_primitives::TransactionSigned>,
|
||||
Transaction: PoolTransaction<
|
||||
Consensus = reth_primitives::TransactionSigned,
|
||||
Pooled = reth_primitives::PooledTransactionsElement,
|
||||
>,
|
||||
> + Unpin
|
||||
+ 'static,
|
||||
Node::Provider: BlockReader<
|
||||
@ -677,7 +680,10 @@ impl<Node: FullNodeTypes> BuilderContext<Node> {
|
||||
) -> NetworkHandle
|
||||
where
|
||||
Pool: TransactionPool<
|
||||
Transaction: PoolTransaction<Consensus = reth_primitives::TransactionSigned>,
|
||||
Transaction: PoolTransaction<
|
||||
Consensus = reth_primitives::TransactionSigned,
|
||||
Pooled = reth_primitives::PooledTransactionsElement,
|
||||
>,
|
||||
> + Unpin
|
||||
+ 'static,
|
||||
Node::Provider: BlockReader<
|
||||
|
||||
Reference in New Issue
Block a user