Merge pull request #394 from ralexstokes/fix-update-validator-registry-fn
Remove dangling `return` statement from spec function
This commit is contained in:
commit
d360330f83
|
@ -1759,8 +1759,6 @@ def update_validator_registry(state: BeaconState) -> None:
|
||||||
validators_to_penalize = filter(to_penalize, range(len(validator_registry)))
|
validators_to_penalize = filter(to_penalize, range(len(validator_registry)))
|
||||||
for index in validators_to_penalize:
|
for index in validators_to_penalize:
|
||||||
state.validator_balances[index] -= get_effective_balance(state, index) * min(total_penalties * 3, total_balance) // total_balance
|
state.validator_balances[index] -= get_effective_balance(state, index) * min(total_penalties * 3, total_balance) // total_balance
|
||||||
|
|
||||||
return validator_registry, latest_penalized_exit_balances, validator_registry_delta_chain_tip
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Also perform the following updates:
|
Also perform the following updates:
|
||||||
|
|
Loading…
Reference in New Issue