data column fetch record
This commit is contained in:
parent
94fa162172
commit
44c95a0667
|
@ -119,10 +119,8 @@ func dataColumnFetchRecord*(quarantine: DataColumnQuarantine,
|
||||||
var indices: seq[ColumnIndex]
|
var indices: seq[ColumnIndex]
|
||||||
for i in 0..<NUMBER_OF_COLUMNS:
|
for i in 0..<NUMBER_OF_COLUMNS:
|
||||||
let idx = ColumnIndex(i)
|
let idx = ColumnIndex(i)
|
||||||
if quarantine.data_columns.hasKey(
|
if not quarantine.data_columns.hasKey(
|
||||||
(blck.root, idx)):
|
(blck.root, idx)):
|
||||||
continue
|
|
||||||
else:
|
|
||||||
indices.add(idx)
|
indices.add(idx)
|
||||||
DataColumnFetchRecord(block_root: blck.root, indices: indices)
|
DataColumnFetchRecord(block_root: blck.root, indices: indices)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue