34 lines
1.0 KiB
Go
34 lines
1.0 KiB
Go
package distribution
|
|
|
|
import (
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/distribution/keeper"
|
|
)
|
|
|
|
// set the proposer for determining distribution during endblock
|
|
func BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock, k keeper.Keeper) {
|
|
|
|
// determine the total power signing the block
|
|
var totalPower, sumPrecommitPower int64
|
|
for _, voteInfo := range req.LastCommitInfo.GetVotes() {
|
|
totalPower += voteInfo.Validator.Power
|
|
if voteInfo.SignedLastBlock {
|
|
sumPrecommitPower += voteInfo.Validator.Power
|
|
}
|
|
}
|
|
|
|
// TODO this is Tendermint-dependent
|
|
// ref https://github.com/cosmos/cosmos-sdk/issues/3095
|
|
if ctx.BlockHeight() > 1 {
|
|
previousProposer := k.GetPreviousProposerConsAddr(ctx)
|
|
k.AllocateTokens(ctx, sumPrecommitPower, totalPower, previousProposer, req.LastCommitInfo.GetVotes())
|
|
}
|
|
|
|
// record the proposer for when we payout on the next block
|
|
consAddr := sdk.ConsAddress(req.Header.ProposerAddress)
|
|
k.SetPreviousProposerConsAddr(ctx, consAddr)
|
|
|
|
}
|