Skip to content

Commit e5a75c7

Browse files
committed
fix CI
1 parent 41254fe commit e5a75c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rollup/internal/controller/relayer/l2_relayer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ func (r *Layer2Relayer) ProcessPendingBatches() {
522522
log.Info("Sent the commitBatches tx to layer1", "batches count", len(batchesToSubmit), "start index", firstBatch.Index, "start hash", firstBatch.Hash, "end index", lastBatch.Index, "end hash", lastBatch.Hash, "tx hash", txHash.String())
523523
}
524524

525-
func (r *Layer2Relayer) contextIDFromBatches(codecVersion encoding.CodecVersion, batches []*dbBatchWithChunksAndParent) string {
525+
func (r *Layer2Relayer) contextIDFromBatches(codecVersion encoding.CodecVersion, batches []*dbBatchWithChunks) string {
526526
contextIDs := []string{fmt.Sprintf("v%d", codecVersion)}
527527
for _, batch := range batches {
528528
contextIDs = append(contextIDs, batch.Batch.Hash)

0 commit comments

Comments
 (0)