From 5fb1837e455e6a7d2900c0f3e00948a6c1366021 Mon Sep 17 00:00:00 2001 From: cong-or Date: Mon, 4 Dec 2023 17:17:53 +0000 Subject: [PATCH] test(reintroduce expired tx flush): tweek slot duration in the hope of processing all good txs in time --- jormungandr/src/fragment/process.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/jormungandr/src/fragment/process.rs b/jormungandr/src/fragment/process.rs index b54cbf26da..4a8d3551e8 100644 --- a/jormungandr/src/fragment/process.rs +++ b/jormungandr/src/fragment/process.rs @@ -161,6 +161,7 @@ impl Process { fragment_ids ); pool.remove_added_to_block(fragment_ids, status); + pool.remove_expired_txs().await; }.instrument(span).await }