skip proposer bonus if no attestation for v index
This commit is contained in:
parent
1210e8e8ca
commit
f88db44e81
|
@ -1946,8 +1946,9 @@ def compute_normal_justification_and_finalization_deltas(state: BeaconState) ->
|
||||||
else:
|
else:
|
||||||
deltas[1][index] += get_base_reward(state, index)
|
deltas[1][index] += get_base_reward(state, index)
|
||||||
# Proposer bonus
|
# Proposer bonus
|
||||||
proposer_index = get_beacon_proposer_index(state, inclusion_slot(state, index))
|
if index in get_attesting_indices(state, state.previous_epoch_attestations):
|
||||||
deltas[0][proposer_index] += get_base_reward(state, index) // ATTESTATION_INCLUSION_REWARD_QUOTIENT
|
proposer_index = get_beacon_proposer_index(state, inclusion_slot(state, index))
|
||||||
|
deltas[0][proposer_index] += get_base_reward(state, index) // ATTESTATION_INCLUSION_REWARD_QUOTIENT
|
||||||
return deltas
|
return deltas
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue