starting to cell-ize

This commit is contained in:
Daniel Knopik
2026-04-27 11:36:09 +02:00
parent 3a5492fba7
commit 4535753c9b
18 changed files with 297 additions and 236 deletions

View File

@@ -778,7 +778,10 @@ impl<T: BeaconChainTypes> SyncNetworkContext<T> {
let range_req = entry.get_mut();
if let Some(blocks_result) = range_req.responses(
self.chain.data_availability_checker.v1().clone(),
self.chain
.data_availability_checker
.pending_block_cache()
.clone(),
self.chain.spec.clone(),
) {
if let Err(CouplingError::DataColumnPeerFailure {

View File

@@ -1110,7 +1110,10 @@ impl TestRig {
let range_sync_block = RangeSyncBlock::new(
block,
block_data,
self.harness.chain.data_availability_checker.v1(),
self.harness
.chain
.data_availability_checker
.pending_block_cache(),
self.harness.chain.spec.clone(),
)
.unwrap();