From aa726cc72cce7703073da8754abda794664d72a3 Mon Sep 17 00:00:00 2001 From: dapplion <35266934+dapplion@users.noreply.github.com> Date: Thu, 12 Jun 2025 19:29:14 +0200 Subject: [PATCH] lint --- beacon_node/beacon_chain/tests/store_tests.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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(),