Merge branch 'dev' into dankrad-patch-7

* dev:
  Typo fix
This commit is contained in:
Carl Beekhuizen 2019-05-16 12:15:30 +02:00
commit 229dfe81a6
No known key found for this signature in database
GPG Key ID: D05CA176D0020646
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ def is_proposer_at_slot(state: BeaconState,
### Lookahead
The beacon chain shufflings are designed to provide a minimum of 1 epoch lookahead on the validator's upcoming committee assignments for attesting dictated by the shuffling and slot. Note that this lookahead does not apply to proposing, which must checked during the slot in question.
The beacon chain shufflings are designed to provide a minimum of 1 epoch lookahead on the validator's upcoming committee assignments for attesting dictated by the shuffling and slot. Note that this lookahead does not apply to proposing, which must be checked during the slot in question.
`get_committee_assignment` should be called at the start of each epoch to get the assignment for the next epoch (`current_epoch + 1`). A validator should plan for future assignments which involves noting at which future slot one will have to attest and also which shard one should begin syncing (in Phase 1+).