@hwwhww review

Co-authored-by: Hsiao-Wei Wang <hsiaowei.eth@gmail.com>
This commit is contained in:
Danny Ryan 2021-03-10 13:12:48 -07:00 committed by GitHub
parent 37c49ffcdc
commit b2a172ab21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -189,8 +189,8 @@ class BeaconState(Container):
current_justified_checkpoint: Checkpoint
finalized_checkpoint: Checkpoint
# Light client sync committees
current_sync_committee: SyncCommittee
next_sync_committee: SyncCommittee
current_sync_committee: SyncCommittee # [New in HF1]
next_sync_committee: SyncCommittee # [New in HF1]
# Leak
leak_scores: List[uint64, VALIDATOR_REGISTRY_LIMIT] # [New in HF1]
```