From 7bfc956448f7e956f2bf0426daba1b2deecadd95 Mon Sep 17 00:00:00 2001 From: Karl Bartel Date: Wed, 11 Sep 2024 09:19:34 +0200 Subject: [PATCH] Use old queueTx name to backport non-blocking The changes to make the op-batcher non-blocking were done on a version after 1.9.1, so we have to undo one rename to make it work. This commit should be discarded during the next rebase on upstream. --- op-batcher/batcher/driver.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op-batcher/batcher/driver.go b/op-batcher/batcher/driver.go index ed0eb75af5a5d..3aca5cd1ce108 100644 --- a/op-batcher/batcher/driver.go +++ b/op-batcher/batcher/driver.go @@ -594,7 +594,7 @@ func (l *BatchSubmitter) publishToAltDAAndL1(txdata txData, queue *txmgr.Queue[t } l.Log.Info("Set altda input", "commitment", comm, "tx", txdata.ID()) candidate := l.calldataTxCandidate(comm.TxData()) - l.sendTx(txdata, false, candidate, queue, receiptsCh) + l.queueTx(txdata, false, candidate, queue, receiptsCh) return nil }) if !goroutineSpawned {