Skip to content

Commit 5bde140

Browse files
committed
fix
1 parent f2cc32e commit 5bde140

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beacon_chain/sync/column_syncer.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ func groupAndFillColumnTable*[A, B](
388388
blocks: seq[ref ForkedSignedBeaconBlock],
389389
columns: seq[ref DataColumnSidecar]
390390
): Result[void, string] =
391-
var grouped = newSeqOfCap[DataColumnSidecars](blocks.len)
391+
var grouped = newSeq[DataColumnSidecars](blocks.len)
392392
var column_cursor = 0
393393
for block_idx, blck in blocks:
394394
withBlck(blck[]):

0 commit comments

Comments
 (0)