type annotation
This commit is contained in:
parent
0f74ab5686
commit
5b92eae08f
|
@ -287,7 +287,7 @@ def get_expected_withdrawals(state: BeaconState) -> Sequence[Withdrawal]:
|
||||||
epoch = get_current_epoch(state)
|
epoch = get_current_epoch(state)
|
||||||
withdrawal_index = state.next_withdrawal_index
|
withdrawal_index = state.next_withdrawal_index
|
||||||
index = ValidatorIndex((state.last_withdrawal_validator_index + 1) % len(state.validators))
|
index = ValidatorIndex((state.last_withdrawal_validator_index + 1) % len(state.validators))
|
||||||
ret: Sequence[Withdrawal] = []
|
ret: List[Withdrawal] = []
|
||||||
probed = 0
|
probed = 0
|
||||||
while (len(ret) < MAX_WITHDRAWALS_PER_PAYLOAD) and (probed < len(state.validators)):
|
while (len(ret) < MAX_WITHDRAWALS_PER_PAYLOAD) and (probed < len(state.validators)):
|
||||||
val = state.validators[index]
|
val = state.validators[index]
|
||||||
|
|
Loading…
Reference in New Issue