Fix python execution 7

This commit is contained in:
Potuz 2024-07-03 13:40:16 -03:00
parent dba3cda3aa
commit 53aaf26ba2
1 changed files with 1 additions and 1 deletions

View File

@ -359,7 +359,7 @@ def get_attesting_indices(state: BeaconState, attestation: Attestation) -> Set[V
committee_offset += len(committee)
ptc = get_ptc(state, attestation.data.slot)
return Set([i for i in output if i not in ptc])
return set([i for i in output if i not in ptc])
```
#### `get_payload_attesting_indices`