mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: remove redundant Send bounds for BlockReader types (#13452)
This commit is contained in:
@ -83,7 +83,7 @@ where
|
||||
BlockBody = reth_primitives::BlockBody,
|
||||
SignedTx = TransactionSigned,
|
||||
>,
|
||||
Client: StateProviderFactory + BlockReaderIdExt + ChainSpecProvider + Clone + Send + 'static,
|
||||
Client: StateProviderFactory + BlockReaderIdExt + ChainSpecProvider + Clone + 'static,
|
||||
P: TransactionPoolExt<Transaction: PoolTransaction<Consensus = TransactionSigned>> + 'static,
|
||||
St: Stream<Item = CanonStateNotification<N>> + Send + Unpin + 'static,
|
||||
Tasks: TaskSpawner + 'static,
|
||||
@ -109,7 +109,7 @@ pub async fn maintain_transaction_pool<N, Client, P, St, Tasks>(
|
||||
BlockBody = reth_primitives::BlockBody,
|
||||
SignedTx = TransactionSigned,
|
||||
>,
|
||||
Client: StateProviderFactory + BlockReaderIdExt + ChainSpecProvider + Clone + Send + 'static,
|
||||
Client: StateProviderFactory + BlockReaderIdExt + ChainSpecProvider + Clone + 'static,
|
||||
P: TransactionPoolExt<Transaction: PoolTransaction<Consensus = TransactionSigned>> + 'static,
|
||||
St: Stream<Item = CanonStateNotification<N>> + Send + Unpin + 'static,
|
||||
Tasks: TaskSpawner + 'static,
|
||||
|
||||
Reference in New Issue
Block a user