This commit is contained in:
Agnish Ghosh 2024-07-06 13:55:33 +05:30
parent 74ee8bb74d
commit 7b9c68b19d
No known key found for this signature in database
GPG Key ID: 7BDDA05D1B25E9F8
1 changed files with 2 additions and 2 deletions

View File

@ -222,14 +222,14 @@ proc get_data_column_sidecars*(signed_block: deneb.SignedBeaconBlock |
kzg_incl_proof: array[4, Eth2Digest] kzg_incl_proof: array[4, Eth2Digest]
if blobs.len == 0: if blobs.len == 0:
return err ("Blob sequence can't be empty") return errIgnore ("Blob sequence can't be empty")
for blob in blobs: for blob in blobs:
let let
cell_and_proof = computeCellsAndProofs(blob) cell_and_proof = computeCellsAndProofs(blob)
if cell_and_proof.isErr(): if cell_and_proof.isErr():
return err("EIP7549: Could not compute cells") return errIgnore ("EIP7549: Could not compute cells")
if cell_and_proof.isOk: if cell_and_proof.isOk:
cellsAndProofs.add(cell_and_proof.get()) cellsAndProofs.add(cell_and_proof.get())