From 4891559acc21cd899f65ac1c5840ddfda187860f Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Thu, 26 Oct 2023 02:12:30 +0200 Subject: [PATCH] chore: rm redundant trait bound (#5185) --- crates/net/network/src/transactions.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/crates/net/network/src/transactions.rs b/crates/net/network/src/transactions.rs index 0eb6481b3..dfd49c6eb 100644 --- a/crates/net/network/src/transactions.rs +++ b/crates/net/network/src/transactions.rs @@ -19,8 +19,8 @@ use reth_interfaces::{ use reth_metrics::common::mpsc::UnboundedMeteredReceiver; use reth_network_api::{Peers, ReputationChangeKind}; use reth_primitives::{ - FromRecoveredPooledTransaction, IntoRecoveredTransaction, PeerId, PooledTransactionsElement, - TransactionSigned, TxHash, B256, + FromRecoveredPooledTransaction, PeerId, PooledTransactionsElement, TransactionSigned, TxHash, + B256, }; use reth_transaction_pool::{ error::PoolResult, GetPooledTransactionLimit, PoolTransaction, PropagateKind, @@ -752,7 +752,6 @@ where impl Future for TransactionsManager where Pool: TransactionPool + Unpin + 'static, - ::Transaction: IntoRecoveredTransaction, { type Output = ();