Update 0_beacon-chain.md
This commit is contained in:
parent
d5fdeac6e8
commit
c589f8273b
|
@ -1742,7 +1742,6 @@ def process_penalties_and_exits(state: BeaconState) -> None:
|
||||||
sorted_indices = sorted(eligible_indices, key=lambda index: state.validator_registry[index].exit_count)
|
sorted_indices = sorted(eligible_indices, key=lambda index: state.validator_registry[index].exit_count)
|
||||||
withdrawn_so_far = 0
|
withdrawn_so_far = 0
|
||||||
for index in sorted_indices:
|
for index in sorted_indices:
|
||||||
validator = state.validator_registry[index]
|
|
||||||
prepare_validator_for_withdrawal(state, index)
|
prepare_validator_for_withdrawal(state, index)
|
||||||
withdrawn_so_far += 1
|
withdrawn_so_far += 1
|
||||||
if withdrawn_so_far >= MAX_WITHDRAWALS_PER_EPOCH:
|
if withdrawn_so_far >= MAX_WITHDRAWALS_PER_EPOCH:
|
||||||
|
|
Loading…
Reference in New Issue