Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix klay_getRewards stakers amount to exclude remainder #1771

Merged
merged 2 commits into from Feb 1, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions reward/reward_distributor.go
Expand Up @@ -292,7 +292,9 @@ func CalcDeferredReward(header *types.Header, rules params.Rules, pset *params.G
// Remainder from (CN, KGF, KIR) split goes to KGF
kgf = kgf.Add(kgf, splitRem)
// Remainder from staker shares goes to Proposer
// Then, deduct it from stakers so that `minted + totalFee - burntFee = proposer + stakers + kgf + kir`
proposer = proposer.Add(proposer, shareRem)
stakers = stakers.Sub(stakers, shareRem)

// if KGF or KIR is not set, proposer gets the portion
if stakingInfo == nil || common.EmptyAddress(stakingInfo.PoCAddr) {
Expand Down