bump a couple more eth2 phase0 spec refs to v0.11.1

This commit is contained in:
Dustin Brody 2020-04-17 12:12:08 +02:00 committed by zah
parent 943a7da610
commit 05d1d1246a
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# Fork choice implementations
References:
- https://github.com/ethereum/eth2.0-specs/blob/v0.10.1/specs/phase0/fork-choice.md
- https://github.com/ethereum/eth2.0-specs/blob/v0.11.1/specs/phase0/fork-choice.md
- https://github.com/protolambda/lmd-ghost

View File

@ -327,7 +327,7 @@ func is_eligible_for_activation(state: BeaconState, validator: Validator):
# Has not yet been activated
validator.activation_epoch == FAR_FUTURE_EPOCH
# https://github.com/ethereum/eth2.0-specs/blob/v0.10.1/specs/phase0/beacon-chain.md#registry-updates
# https://github.com/ethereum/eth2.0-specs/blob/v0.11.1/specs/phase0/beacon-chain.md#registry-updates
proc process_registry_updates*(state: var BeaconState) {.nbench.}=
## Process activation eligibility and ejections
## Try to avoid caching here, since this could easily become undefined