Update 0_beacon-chain.md

This commit is contained in:
Dean Eigenmann 2019-01-16 21:33:36 +01:00 committed by GitHub
parent 5d542576d9
commit 60bbe7addc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1713,7 +1713,7 @@ def process_ejections(state: BeaconState) -> None:
Iterate through the validator registry
and eject active validators with balance below ``EJECTION_BALANCE``.
"""
for index in get_active_validator_indices(state.validator_registry):
for index in get_active_validator_indices(state.validator_registry, state.slot):
if state.validator_balances[index] < EJECTION_BALANCE * GWEI_PER_ETH:
exit_validator(state, index)
```