From 09d30d13363169522b26b28ac45b9f2f649ce279 Mon Sep 17 00:00:00 2001 From: Dimitris Date: Mon, 12 Feb 2024 19:04:42 +0200 Subject: [PATCH] Lower bump threshold to force bumping --- core/chains/evm/txmgr/builder.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/chains/evm/txmgr/builder.go b/core/chains/evm/txmgr/builder.go index d4d0b96726c..f31e5026cae 100644 --- a/core/chains/evm/txmgr/builder.go +++ b/core/chains/evm/txmgr/builder.go @@ -55,7 +55,8 @@ func NewOptimisticTxm( evmBroadcaster := optimistictxm.NewBroadcaster(txAttemptBuilder, lggr, txStore, client, bcfg,keyStore, sequenceSyncer) rcfg := optimistictxm.ResenderConfig{ - BumpAfterThreshold: time.Duration(fCfg.BumpThreshold()) * blockTime, // Polygon + //BumpAfterThreshold: time.Duration(fCfg.BumpThreshold()) * blockTime, // Polygon + BumpAfterThreshold: blockTime, // Set inclusion to 1 block to force bumping MaxBumpCycles: 5, MaxInFlight: txConfig.MaxInFlight(), ResendInterval: blockTime,