Skip to content

Commit

Permalink
Use old queueTx name to backport non-blocking
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
karlb committed Sep 17, 2024
1 parent 833768c commit 7bfc956
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion op-batcher/batcher/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 7bfc956

Please sign in to comment.