Skip to content

Commit 392ae07

Browse files
authored
feat(blob-uploader): support codec v8 (#1707)
1 parent db80b47 commit 392ae07

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"runtime/debug"
66
)
77

8-
var tag = "v4.5.34"
8+
var tag = "v4.5.35"
99

1010
var commit = func() string {
1111
if info, ok := debug.ReadBuildInfo(); ok {

rollup/internal/controller/blob_uploader/blob_uploader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ func (b *BlobUploader) constructBlobCodec(dbBatch *orm.Batch) (*kzg4844.Blob, er
167167
Chunks: chunks,
168168
}
169169

170-
case encoding.CodecV7:
170+
case encoding.CodecV7, encoding.CodecV8:
171171
encodingBatch = &encoding.Batch{
172172
Index: dbBatch.Index,
173173
ParentBatchHash: common.HexToHash(dbBatch.ParentBatchHash),

0 commit comments

Comments
 (0)