From 868abe4baf28dc29bd2af9311fc0068e5859bc0f Mon Sep 17 00:00:00 2001 From: Daniel Wasserman Date: Thu, 9 Nov 2023 14:59:32 -0600 Subject: [PATCH] Fix: submitter should always call updateOldTxStatuses() --- ethergo/submitter/chain_queue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethergo/submitter/chain_queue.go b/ethergo/submitter/chain_queue.go index 7e05dfce55..503d061315 100644 --- a/ethergo/submitter/chain_queue.go +++ b/ethergo/submitter/chain_queue.go @@ -83,9 +83,9 @@ func (t *txSubmitterImpl) chainPendingQueue(parentCtx context.Context, chainID * continue } - cq.updateOldTxStatuses(gCtx) cq.bumpTX(gCtx, tx) } + cq.updateOldTxStatuses(gCtx) err = cq.g.Wait() if err != nil {