From a9f58a49a252bf214886f04ad3bd67abe6b74c37 Mon Sep 17 00:00:00 2001 From: Michal Kucharczyk <1728078+michalkucharczyk@users.noreply.github.com> Date: Mon, 14 Oct 2024 17:19:59 +0200 Subject: [PATCH] dropped_watcher: fix for flaky test fatp_limits_watcher_non_intial_view_drops_transaction was rarely failing --- .../transaction-pool/src/fork_aware_txpool/dropped_watcher.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/substrate/client/transaction-pool/src/fork_aware_txpool/dropped_watcher.rs b/substrate/client/transaction-pool/src/fork_aware_txpool/dropped_watcher.rs index 2c711fa210e..2dd5836c570 100644 --- a/substrate/client/transaction-pool/src/fork_aware_txpool/dropped_watcher.rs +++ b/substrate/client/transaction-pool/src/fork_aware_txpool/dropped_watcher.rs @@ -175,7 +175,8 @@ where }) } } else { - debug!("[{:?}] dropped_watcher: skipping non tracked tx", tx_hash); + debug!("[{:?}] dropped_watcher: removing (non-tracked) tx", tx_hash); + return Some(tx_hash) } }, _ => {}, -- GitLab