feat(blob-uploader): support codec v8 (#1707)

This commit is contained in:
Morty
2025-07-24 01:34:46 +08:00
committed by GitHub
parent db80b47820
commit 392ae07736
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ import (
"runtime/debug"
)
var tag = "v4.5.34"
var tag = "v4.5.35"
var commit = func() string {
if info, ok := debug.ReadBuildInfo(); ok {

View File

@@ -167,7 +167,7 @@ func (b *BlobUploader) constructBlobCodec(dbBatch *orm.Batch) (*kzg4844.Blob, er
Chunks: chunks,
}
case encoding.CodecV7:
case encoding.CodecV7, encoding.CodecV8:
encodingBatch = &encoding.Batch{
Index: dbBatch.Index,
ParentBatchHash: common.HexToHash(dbBatch.ParentBatchHash),