From 3c14fdab2536e433d32f35d92959f7b372b753ca Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Sat, 6 May 2023 19:34:55 +0200 Subject: [PATCH] chore: improve channel is full log (#2595) --- crates/transaction-pool/src/pool/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/transaction-pool/src/pool/mod.rs b/crates/transaction-pool/src/pool/mod.rs index 15ccd49228..37e00c5fb1 100644 --- a/crates/transaction-pool/src/pool/mod.rs +++ b/crates/transaction-pool/src/pool/mod.rs @@ -331,7 +331,7 @@ where if matches!(err, mpsc::error::TrySendError::Full(_)) { warn!( target: "txpool", - "[{:?}] dropping full ready transaction listener", + "[{:?}] failed to send pending tx; channel full", ready, ); true