diff --git a/beacon_node/beacon_chain/tests/store_tests.rs b/beacon_node/beacon_chain/tests/store_tests.rs index 9f8c14f339..73e2a9025c 100644 --- a/beacon_node/beacon_chain/tests/store_tests.rs +++ b/beacon_node/beacon_chain/tests/store_tests.rs @@ -2603,7 +2603,7 @@ async fn weak_subjectivity_sync_test(slots: Vec, checkpoint_slot: Slot) { .deconstruct(); if wss_fork.fulu_enabled() { info!(block_slot = %block.slot(), ?block_root, "Corrupting data column KZG proof"); - let (mut data_columns, expected_column_indices) = cols.unwrap(); + let mut data_columns = cols.unwrap(); assert!( !data_columns.is_empty(), "data column sidecars shouldn't be empty" @@ -2618,7 +2618,6 @@ async fn weak_subjectivity_sync_test(slots: Vec, checkpoint_slot: Slot) { Some(block_root), block, data_columns.to_vec(), - expected_column_indices, &harness.spec, ) .unwrap() @@ -3819,7 +3818,6 @@ fn available_to_rpc_block(block: AvailableBlock, spec: &ChainSpec .into_iter() .map(|d| CustodyDataColumn::from_asserted_custody(d)) .collect(), - vec![], spec, ) .unwrap(),