We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d96b731 commit c19d3d9Copy full SHA for c19d3d9
beacon_node/beacon_chain/src/beacon_block_reward.rs
@@ -135,7 +135,7 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
135
state
136
.get_validator(proposer_slashing.proposer_index() as usize)?
137
.effective_balance
138
- .safe_div(self.spec.whistleblower_reward_quotient)?,
+ .safe_div(self.spec.whistleblower_reward_quotient_for_state(state))?,
139
)?;
140
}
141
@@ -157,7 +157,7 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
157
158
.get_validator(attester_index as usize)?
159
160
161
162
163
0 commit comments