* mainly sdk.int to cosmossdk.io/math * staking keys * fumpt * var-naming linter errors and a fumpt * Update CHANGELOG.md * Update .golangci.yml * Update CHANGELOG.md * Update test_helpers.go * Update test_helpers.go * fumpt and lint * this lints the db module, and makes it easier to use. It adds breaking name changes * DBConnection -> Connection * previous commit contained a merge error * Update test_helpers.go * Update test_helpers.go * db renamings * merge master * changelog * DBWriter -> Writer * consistent multistore reciever * standard recievers for multistore v2alpha1 * general cleanup of linting issues * more linter fixes * remove prealloc linter * nolint the secp256k1 import * nolint the secp256k1 package * completenolint resulting in a diff that has only nolints
97 lines
2.4 KiB
Go
97 lines
2.4 KiB
Go
package keeper
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"cosmossdk.io/math"
|
|
|
|
storetypes "github.com/cosmos/cosmos-sdk/store/types"
|
|
"github.com/tendermint/tendermint/libs/log"
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
|
|
"github.com/cosmos/cosmos-sdk/x/staking/types"
|
|
)
|
|
|
|
// Implements ValidatorSet interface
|
|
var _ types.ValidatorSet = Keeper{}
|
|
|
|
// Implements DelegationSet interface
|
|
var _ types.DelegationSet = Keeper{}
|
|
|
|
// keeper of the staking store
|
|
type Keeper struct {
|
|
storeKey storetypes.StoreKey
|
|
cdc codec.BinaryCodec
|
|
authKeeper types.AccountKeeper
|
|
bankKeeper types.BankKeeper
|
|
hooks types.StakingHooks
|
|
paramstore paramtypes.Subspace
|
|
}
|
|
|
|
// NewKeeper creates a new staking Keeper instance
|
|
func NewKeeper(
|
|
cdc codec.BinaryCodec, key storetypes.StoreKey, ak types.AccountKeeper, bk types.BankKeeper,
|
|
ps paramtypes.Subspace,
|
|
) *Keeper {
|
|
// set KeyTable if it has not already been set
|
|
if !ps.HasKeyTable() {
|
|
ps = ps.WithKeyTable(types.ParamKeyTable())
|
|
}
|
|
|
|
// ensure bonded and not bonded module accounts are set
|
|
if addr := ak.GetModuleAddress(types.BondedPoolName); addr == nil {
|
|
panic(fmt.Sprintf("%s module account has not been set", types.BondedPoolName))
|
|
}
|
|
|
|
if addr := ak.GetModuleAddress(types.NotBondedPoolName); addr == nil {
|
|
panic(fmt.Sprintf("%s module account has not been set", types.NotBondedPoolName))
|
|
}
|
|
|
|
return &Keeper{
|
|
storeKey: key,
|
|
cdc: cdc,
|
|
authKeeper: ak,
|
|
bankKeeper: bk,
|
|
paramstore: ps,
|
|
hooks: nil,
|
|
}
|
|
}
|
|
|
|
// Logger returns a module-specific logger.
|
|
func (k Keeper) Logger(ctx sdk.Context) log.Logger {
|
|
return ctx.Logger().With("module", "x/"+types.ModuleName)
|
|
}
|
|
|
|
// Set the validator hooks
|
|
func (k *Keeper) SetHooks(sh types.StakingHooks) {
|
|
if k.hooks != nil {
|
|
panic("cannot set validator hooks twice")
|
|
}
|
|
|
|
k.hooks = sh
|
|
}
|
|
|
|
// Load the last total validator power.
|
|
func (k Keeper) GetLastTotalPower(ctx sdk.Context) math.Int {
|
|
store := ctx.KVStore(k.storeKey)
|
|
bz := store.Get(types.LastTotalPowerKey)
|
|
|
|
if bz == nil {
|
|
return sdk.ZeroInt()
|
|
}
|
|
|
|
ip := sdk.IntProto{}
|
|
k.cdc.MustUnmarshal(bz, &ip)
|
|
|
|
return ip.Int
|
|
}
|
|
|
|
// Set the last total validator power.
|
|
func (k Keeper) SetLastTotalPower(ctx sdk.Context, power math.Int) {
|
|
store := ctx.KVStore(k.storeKey)
|
|
bz := k.cdc.MustMarshal(&sdk.IntProto{Int: power})
|
|
store.Set(types.LastTotalPowerKey, bz)
|
|
}
|