File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
tests/core/pyspec/eth2spec/test/deneb/fork_choice Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -381,10 +381,10 @@ def is_valid_indexed_payload_attestation(
381381 state : BeaconState, indexed_payload_attestation : IndexedPayloadAttestation
382382) -> bool :
383383 """
384- Check if ``indexed_payload_attestation`` is non-empty, has sorted and unique indices, and has
384+ Check if ``indexed_payload_attestation`` is non-empty, has sorted indices, and has
385385 a valid aggregate signature.
386386 """
387- # Verify indices are non-empty, sorted, and unique
387+ # Verify indices are non-empty and sorted
388388 indices = indexed_payload_attestation.attesting_indices
389389 if len (indices) == 0 or not indices == sorted (indices):
390390 return False
Original file line number Diff line number Diff line change 2323@with_all_phases_from_to (DENEB , FULU )
2424@spec_state_test
2525def test_simple_blob_data (spec , state ):
26- print (spec )
2726 rng = Random (1234 )
2827
2928 test_steps = []
You can’t perform that action at this time.
0 commit comments