fix: get_data_column_sidecars

This commit is contained in:
Agnish Ghosh 2024-07-04 13:55:51 +05:30
parent 3bea5742f2
commit b927ddd65a
No known key found for this signature in database
GPG Key ID: 7BDDA05D1B25E9F8
2 changed files with 7 additions and 5 deletions

View File

@ -241,8 +241,8 @@ proc get_data_column_sidecars*(signed_block: deneb.SignedBeaconBlock | electra.S
column: column,
kzgCommitments: blck.body.blob_kzg_commitments,
kzgProofs: kzgProofOfColumn,
signed_block_header: signed_block_header
signed_block_header: signed_block_header,
kzg_commitments_inclusion_proof: kzg_incl_proof
)
ok(sidecars)

View File

@ -32,10 +32,12 @@ const
PARALLEL_REQUESTS* = 8
## Number of peers we using to resolve our request.
PARALLEL_REQUESTS_DATA_COLUMNS* = 50
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* = 500_000_000
POLL_INTERVAL = 1.seconds
@ -563,8 +565,8 @@ proc requestManagerDataColumnLoop(
debug "Requesting detected missing data columns", columns = shortLog(columnIds)
let start = SyncMoment.now(0)
var workers:
array[PARALLEL_REQUESTS, Future[void].Raising([CancelledError])]
for i in 0..<PARALLEL_REQUESTS:
array[PARALLEL_REQUESTS_DATA_COLUMNS, Future[void].Raising([CancelledError])]
for i in 0..<PARALLEL_REQUESTS_DATA_COLUMNS:
workers[i] = rman.fetchDataColumnsFromNetwork(columnIds)
await allFutures(workers)