@@ -463,6 +463,8 @@ proc initFullNode(
463
463
when consensusFork >= ConsensusFork .Electra :
464
464
# Pull blobs and proofs from the EL blob pool
465
465
let blobsFromElOpt = await node.elManager.sendGetBlobs (forkyBlck)
466
+ debugEcho " pulled blobs from el"
467
+ debugEcho blobsFromElOpt.get.len
466
468
if blobsFromElOpt.isSome ():
467
469
let blobsEl = blobsFromElOpt.get ()
468
470
# check lengths of array[BlobAndProofV1] with blob
@@ -479,14 +481,14 @@ proc initFullNode(
479
481
let blob_sidecars_el =
480
482
create_blob_sidecars (forkyBlck, kzgPrfs, kzgBlbs)
481
483
482
- # populate blob quarantine to tackle blob loop
483
- for blb_el in blob_sidecars_el:
484
- blobQuarantine[].put (newClone blb_el)
484
+ # # populate blob quarantine to tackle blob loop
485
+ # for blb_el in blob_sidecars_el:
486
+ # blobQuarantine[].put(newClone blb_el)
485
487
486
- # now pop blobQuarantine and make block available for attestation
487
- let blobs = blobQuarantine[].popBlobs (forkyBlck.root, forkyBlck)
488
+ # # now pop blobQuarantine and make block available for attestation
489
+ # let blobs = blobQuarantine[].popBlobs(forkyBlck.root, forkyBlck)
488
490
return await blockProcessor[].addBlock (MsgSource .gossip, signedBlock,
489
- Opt .some (blobs ),
491
+ Opt .some (blob_sidecars_el ),
490
492
maybeFinalized = maybeFinalized)
491
493
492
494
# in case EL does not support `engine_getBlobsV1`
0 commit comments