Cell Dissemination (Partial messages) (#8314)

- https://github.com/ethereum/consensus-specs/pull/4558
- https://eips.ethereum.org/EIPS/eip-8136


  


Co-Authored-By: Daniel Knopik <daniel@dknopik.de>

Co-Authored-By: Pawan Dhananjay <pawandhananjay@gmail.com>

Co-Authored-By: Jimmy Chen <jchen.tc@gmail.com>
This commit is contained in:
Daniel Knopik
2026-04-23 20:52:28 +02:00
committed by GitHub
parent e086628efe
commit 8a384ff445
54 changed files with 4797 additions and 630 deletions

View File

@@ -930,6 +930,7 @@ where
CanonicalHead::new(fork_choice, Arc::new(head_snapshot), head_payload_status);
let shuffling_cache_size = self.chain_config.shuffling_cache_size;
let complete_blob_backfill = self.chain_config.complete_blob_backfill;
let enable_partial_columns = self.chain_config.enable_partial_columns;
// Calculate the weak subjectivity point in which to backfill blocks to.
let genesis_backfill_slot = if self.chain_config.genesis_backfill {
@@ -1063,6 +1064,7 @@ where
self.kzg.clone(),
Arc::new(custody_context),
self.spec,
enable_partial_columns,
)
.map_err(|e| format!("Error initializing DataAvailabilityChecker: {:?}", e))?,
),