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 06beb5d commit c8a233cCopy full SHA for c8a233c
common/version/version.go
@@ -5,7 +5,7 @@ import (
5
"runtime/debug"
6
)
7
8
-var tag = "v4.4.81"
+var tag = "v4.4.82"
9
10
var commit = func() string {
11
if info, ok := debug.ReadBuildInfo(); ok {
rollup/internal/controller/watcher/chunk_proposer.go
@@ -295,6 +295,7 @@ func (p *ChunkProposer) proposeChunk() error {
295
}
296
297
var chunk encoding.Chunk
298
+ chunk.Blocks = make([]*encoding.Block, 0, len(blocks))
299
for i, block := range blocks {
300
chunk.Blocks = append(chunk.Blocks, block)
301
0 commit comments