diff --git a/beacon_chain/sync/sync_protocol.nim b/beacon_chain/sync/sync_protocol.nim index dcbe7b343..02702d336 100644 --- a/beacon_chain/sync/sync_protocol.nim +++ b/beacon_chain/sync/sync_protocol.nim @@ -24,7 +24,7 @@ const ## Allow syncing ~64 blocks/sec (minus request costs) blobResponseCost = allowedOpsPerSecondCost(1000) ## Multiple can exist per block, they are much smaller than blocks - dataColumnResponseCost = allowedOpsPerSecondCost(250) + dataColumnResponseCost = allowedOpsPerSecondCost(4000) ## 1 blob has an equivalent memory of 8 data columns type diff --git a/beacon_chain/validators/message_router.nim b/beacon_chain/validators/message_router.nim index e529cd748..67dd3786c 100644 --- a/beacon_chain/validators/message_router.nim +++ b/beacon_chain/validators/message_router.nim @@ -145,23 +145,23 @@ proc routeSignedBeaconBlock*( blockRoot = shortLog(blck.root), blck = shortLog(blck.message), signature = shortLog(blck.signature), error = res.error() - # var blobRefs = Opt.none(BlobSidecars) - # if blobsOpt.isSome(): - # let blobs = blobsOpt.get() - # var workers = newSeq[Future[SendResult]](blobs.len) - # for i in 0..= ConsensusFork.Deneb: