49 lines
942 B
Go
49 lines
942 B
Go
|
package keeper
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/tendermint/tendermint/libs/log"
|
||
|
|
||
|
"colinear/x/colinearcore/types"
|
||
|
|
||
|
"github.com/cosmos/cosmos-sdk/codec"
|
||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
|
||
|
)
|
||
|
|
||
|
type (
|
||
|
Keeper struct {
|
||
|
cdc codec.BinaryCodec
|
||
|
storeKey sdk.StoreKey
|
||
|
memKey sdk.StoreKey
|
||
|
paramstore paramtypes.Subspace
|
||
|
bank types.BankKeeper
|
||
|
}
|
||
|
)
|
||
|
|
||
|
func NewKeeper(
|
||
|
cdc codec.BinaryCodec,
|
||
|
storeKey,
|
||
|
memKey sdk.StoreKey,
|
||
|
ps paramtypes.Subspace,
|
||
|
bank types.BankKeeper,
|
||
|
) *Keeper {
|
||
|
// set KeyTable if it has not already been set
|
||
|
if !ps.HasKeyTable() {
|
||
|
ps = ps.WithKeyTable(types.ParamKeyTable())
|
||
|
}
|
||
|
|
||
|
return &Keeper{
|
||
|
cdc: cdc,
|
||
|
storeKey: storeKey,
|
||
|
memKey: memKey,
|
||
|
paramstore: ps,
|
||
|
bank: bank,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (k Keeper) Logger(ctx sdk.Context) log.Logger {
|
||
|
return ctx.Logger().With("module", fmt.Sprintf("x/%s", types.ModuleName))
|
||
|
}
|