fixed no blob commitments issue

This commit is contained in:
Agnish Ghosh 2024-10-04 18:23:33 +05:30
parent 87ed9123c7
commit 51cff05d02
1 changed files with 2 additions and 1 deletions

View File

@ -556,7 +556,8 @@ proc getMissingDataColumns(rman: RequestManager): seq[DataColumnIdentifier] =
let local_custody =
rman.network.nodeId.get_custody_columns(max(SAMPLES_PER_SLOT.uint64,
local_csc))
if id.index in local_custody and id notin fetches:
if id.index in local_custody and id notin fetches and
len(forkyBlck.message.body.blob_kzg_commitments) != 0:
fetches.add(id)
else:
# this is a programming error and it not should occur