Skip to content

Commit e62c6f0

Browse files
jonastheisThegaram
andauthored
fix: add ABI with removed functions from contract (#1135)
* add ABI with removed functions from contract * chore: auto version bump [bot] --------- Co-authored-by: Péter Garamvölgyi <[email protected]> Co-authored-by: Thegaram <[email protected]>
1 parent 6954c73 commit e62c6f0

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

params/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
const (
2525
VersionMajor = 5 // Major version component of the current release
2626
VersionMinor = 8 // Minor version component of the current release
27-
VersionPatch = 21 // Patch version component of the current release
27+
VersionPatch = 22 // Patch version component of the current release
2828
VersionMeta = "mainnet" // Version metadata to append to the version string
2929
)
3030

rollup/da_syncer/batch_queue.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ func (bq *BatchQueue) processAndDeleteBatch(batch da.Entry) da.EntryWithBlocks {
159159
// In case of a restart or crash we can continue from the last processed batch (and its metadata).
160160
rawdb.WriteDAProcessedBatchMeta(bq.db, bq.previousBatch)
161161

162-
log.Info("processing batch", "batchIndex", entryWithBlocks.BatchIndex(), "L1BlockNumber", entryWithBlocks.L1BlockNumber(), "totalL1MessagesPopped", entryWithBlocks.TotalL1MessagesPopped(), "previousBatch", bq.previousBatch.BatchIndex, "previousL1BlockNumber", bq.previousBatch.L1BlockNumber, "previous TotalL1MessagesPopped", bq.previousBatch.TotalL1MessagesPopped)
162+
log.Debug("processing batch", "batchIndex", entryWithBlocks.BatchIndex(), "L1BlockNumber", entryWithBlocks.L1BlockNumber(), "totalL1MessagesPopped", entryWithBlocks.TotalL1MessagesPopped(), "previousBatch", bq.previousBatch.BatchIndex, "previousL1BlockNumber", bq.previousBatch.L1BlockNumber, "previous TotalL1MessagesPopped", bq.previousBatch.TotalL1MessagesPopped)
163163

164164
bq.previousBatch = &rawdb.DAProcessedBatchMeta{
165165
L1BlockNumber: entryWithBlocks.L1BlockNumber(),

0 commit comments

Comments
 (0)