From 5432d122cd17ec9759fe2d252e4dd6cb4494ea11 Mon Sep 17 00:00:00 2001 From: Thomas Coratger Date: Fri, 20 Mar 2026 19:50:35 +0100 Subject: [PATCH] test fixture: small touchup --- .../src/consensus_testing/test_fixtures/fork_choice.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/testing/src/consensus_testing/test_fixtures/fork_choice.py b/packages/testing/src/consensus_testing/test_fixtures/fork_choice.py index f4d010d8..988f1ced 100644 --- a/packages/testing/src/consensus_testing/test_fixtures/fork_choice.py +++ b/packages/testing/src/consensus_testing/test_fixtures/fork_choice.py @@ -418,8 +418,6 @@ def _build_block_from_spec( aggregation_store, _ = working_store.aggregate() merged_store = aggregation_store.accept_new_attestations() - available_attestations = attestations - # Build the block using spec logic. # # State handles the core block construction. @@ -429,8 +427,8 @@ def _build_block_from_spec( slot=spec.slot, proposer_index=proposer_index, parent_root=parent_root, - attestations=available_attestations, - available_attestations=available_attestations, + attestations=attestations, + available_attestations=attestations, aggregated_payloads=merged_store.latest_known_aggregated_payloads, )