Add da router, and initial logic

This commit is contained in:
Eitan Seri-Levi
2026-01-27 19:32:30 -08:00
parent 7f065009a7
commit d9c21f5e33
30 changed files with 3405 additions and 208 deletions

View File

@@ -402,7 +402,7 @@ async fn compute_custody_columns_to_import<T: BeaconChainTypes>(
// Only consider columns that are not already known to data availability.
if let Some(known_columns) =
chain_adapter_cloned.cached_data_column_indexes(&block_root)
chain_adapter_cloned.cached_data_column_indexes(block.slot(), &block_root)
{
custody_columns.retain(|col| !known_columns.contains(&col.index()));
if custody_columns.is_empty() {