Skip to content

Commit

Permalink
Milder ejections
Browse files Browse the repository at this point in the history
See item 22 in #675. Also partially addresses #527.
  • Loading branch information
JustinDrake committed Mar 15, 2019
1 parent 15bf3c4 commit 4a8d748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specs/core/0_beacon-chain.md
Original file line number Diff line number Diff line change
Expand Up @@ -2050,7 +2050,7 @@ def process_ejections(state: BeaconState) -> None:
"""
for index in get_active_validator_indices(state.validator_registry, get_current_epoch(state)):
if state.validator_balances[index] < EJECTION_BALANCE:
exit_validator(state, index)
initiate_validator_exit(state, index)
```

#### Validator registry and shuffling seed data
Expand Down

0 comments on commit 4a8d748

Please sign in to comment.