fix response time

This commit is contained in:
Agnish Ghosh 2024-08-19 13:17:33 +05:30
parent 287bf72fbb
commit 635eebbed1
2 changed files with 4 additions and 2 deletions

View File

@ -1520,6 +1520,8 @@ proc tryReconstructingDataColumns* (self: BeaconNode,
let recovered_cps = recover_cells_and_proofs(data_column_sidecars, storedColumns.len, signed_block)
if not recovered_cps.isOk:
return err("Error recovering cells and proofs from data columns")
else:
debug "Computed Cells and Proofs successfully!"
# Reconstruct data column sidecars from recovered blobs
let reconstructedDataColumns = get_data_column_sidecars(signed_block, recovered_cps.get)

View File

@ -32,12 +32,12 @@ const
PARALLEL_REQUESTS* = 2
## Number of peers we using to resolve our request.
PARALLEL_REQUESTS_DATA_COLUMNS* = 8
PARALLEL_REQUESTS_DATA_COLUMNS* = 16
BLOB_GOSSIP_WAIT_TIME_NS* = 2 * 1_000_000_000
## How long to wait for blobs to arrive over gossip before fetching.
DATA_COLUMN_GOSSIP_WAIT_TIME_NS* = 8 * 1_000_000_000
DATA_COLUMN_GOSSIP_WAIT_TIME_NS* = 250_000_000
POLL_INTERVAL = 1.seconds