1 parent 2bde68e commit 3c5f8edCopy full SHA for 3c5f8ed
1 file changed
packages/testing/src/consensus_testing/test_fixtures/fork_choice.py
@@ -418,8 +418,6 @@ def _build_block_from_spec(
418
aggregation_store, _ = working_store.aggregate()
419
merged_store = aggregation_store.accept_new_attestations()
420
421
- available_attestations = attestations
422
-
423
# Build the block using spec logic.
424
#
425
# State handles the core block construction.
@@ -429,8 +427,8 @@ def _build_block_from_spec(
429
427
slot=spec.slot,
430
428
proposer_index=proposer_index,
431
parent_root=parent_root,
432
- attestations=available_attestations,
433
- available_attestations=available_attestations,
+ attestations=attestations,
+ available_attestations=attestations,
434
aggregated_payloads=merged_store.latest_known_aggregated_payloads,
435
)
436
0 commit comments