MAX_COMMITTEE_SIZE -> MAX_VALIDATORS_PER_COMMITTEE (missed one)

This commit is contained in:
Dankrad Feist 2020-12-28 16:56:43 +00:00 committed by protolambda
parent 7fc34c801d
commit f216000815
No known key found for this signature in database
GPG Key ID: EC89FDBB2B4C7623

View File

@ -197,7 +197,7 @@ class PendingShardHeader(Container):
# Length of the data in samples
length: uint64
# Who voted for the header
votes: Bitlist[MAX_COMMITTEE_SIZE]
votes: Bitlist[MAX_VALIDATORS_PER_COMMITTEE]
# Has this header been confirmed?
confirmed: bool
```