Change `PENALIZED_WITHDRAWAL_TIME` variable
It's not in the "Constants" list and it is assigned to.
This commit is contained in:
parent
c26a92672e
commit
0b827a0447
|
@ -1823,8 +1823,8 @@ def process_penalties_and_exits(state: BeaconState) -> None:
|
|||
def eligible(index):
|
||||
validator = state.validator_registry[index]
|
||||
if validator.penalized_slot <= state.slot:
|
||||
PENALIZED_WITHDRAWAL_TIME = LATEST_PENALIZED_EXIT_LENGTH * EPOCH_LENGTH // 2
|
||||
return state.slot >= validator.penalized_slot + PENALIZED_WITHDRAWAL_TIME
|
||||
penalized_withdrawal_time = LATEST_PENALIZED_EXIT_LENGTH * EPOCH_LENGTH // 2
|
||||
return state.slot >= validator.penalized_slot + penalized_withdrawal_time
|
||||
else:
|
||||
return state.slot >= validator.exit_slot + MIN_VALIDATOR_WITHDRAWAL_TIME
|
||||
|
||||
|
|
Loading…
Reference in New Issue