cosmos-sdk/x/distribution/abci_app.go

34 lines
1.1 KiB
Go
Raw Normal View History

2018-09-13 23:35:02 -07:00
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"
2018-09-13 23:35:02 -07:00
)
// set the proposer for determining distribution during endblock
func BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock, k keeper.Keeper) {
2019-01-16 13:38:05 -08:00
// determine the total power signing the block
2019-03-14 11:13:15 -07:00
var previousTotalPower, sumPreviousPrecommitPower int64
for _, voteInfo := range req.LastCommitInfo.GetVotes() {
2019-03-14 11:13:15 -07:00
previousTotalPower += voteInfo.Validator.Power
if voteInfo.SignedLastBlock {
2019-03-14 11:13:15 -07:00
sumPreviousPrecommitPower += voteInfo.Validator.Power
}
}
2018-10-14 23:34:01 -07:00
2019-01-16 13:38:05 -08:00
// TODO this is Tendermint-dependent
// ref https://github.com/cosmos/cosmos-sdk/issues/3095
if ctx.BlockHeight() > 1 {
previousProposer := k.GetPreviousProposerConsAddr(ctx)
2019-03-14 11:13:15 -07:00
k.AllocateTokens(ctx, sumPreviousPrecommitPower, previousTotalPower, previousProposer, req.LastCommitInfo.GetVotes())
2018-09-28 01:02:07 -07:00
}
2019-01-16 13:38:05 -08:00
// record the proposer for when we payout on the next block
consAddr := sdk.ConsAddress(req.Header.ProposerAddress)
k.SetPreviousProposerConsAddr(ctx, consAddr)
2018-09-13 23:35:02 -07:00
}