Skip to content

Commit e6e7c92

Browse files
committed
weird fix
1 parent af9b5d9 commit e6e7c92

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

specs/electra/validator.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,12 @@ def compute_on_chain_aggregate(network_aggregates: Sequence[Attestation]) -> Att
6666
committee_flags = [(index in committee_indices) for index in range(0, MAX_COMMITTEES_PER_SLOT)]
6767
committee_bits = Bitvector[MAX_COMMITTEES_PER_SLOT](committee_flags)
6868

69-
return Attestation(aggregation_bits, data, committee_bits, signature)
69+
return Attestation(
70+
aggregation_bits=aggregation_bits,
71+
data=data,
72+
committee_bits=committee_bits,
73+
signature=signature,
74+
)
7075
```
7176

7277
#### Deposits

0 commit comments

Comments
 (0)