We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4f869a commit fa9fab6Copy full SHA for fa9fab6
common/version/version.go
@@ -5,7 +5,7 @@ import (
5
"runtime/debug"
6
)
7
8
-var tag = "v4.5.14"
+var tag = "v4.5.15"
9
10
var commit = func() string {
11
if info, ok := debug.ReadBuildInfo(); ok {
rollup/internal/controller/relayer/l2_relayer.go
@@ -319,6 +319,11 @@ func (r *Layer2Relayer) ProcessPendingBatches() {
319
return
320
}
321
322
+ // nothing to do if we don't have any pending batches
323
+ if len(dbBatches) == 0 {
324
+ return
325
+ }
326
+
327
// if backlog outgrow max size, force‐submit enough oldest batches
328
backlogCount, err := r.batchOrm.GetFailedAndPendingBatchesCount(r.ctx)
329
if err != nil {
0 commit comments