cosmos-sdk/x/crisis/alias.go
Marko bef3689245
linter: enable nolintlint (#6162)
* nolintlint enable

* remove space

* fix tests

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2020-05-08 08:46:12 +00:00

36 lines
1.1 KiB
Go

package crisis
import (
"github.com/cosmos/cosmos-sdk/x/crisis/keeper"
"github.com/cosmos/cosmos-sdk/x/crisis/types"
)
const (
ModuleName = types.ModuleName
DefaultParamspace = types.DefaultParamspace
EventTypeInvariant = types.EventTypeInvariant
AttributeValueCrisis = types.AttributeValueCrisis
AttributeKeyRoute = types.AttributeKeyRoute
)
var (
RegisterCodec = types.RegisterCodec
ErrNoSender = types.ErrNoSender
ErrUnknownInvariant = types.ErrUnknownInvariant
NewGenesisState = types.NewGenesisState
DefaultGenesisState = types.DefaultGenesisState
NewMsgVerifyInvariant = types.NewMsgVerifyInvariant
ParamKeyTable = types.ParamKeyTable
NewInvarRoute = types.NewInvarRoute
NewKeeper = keeper.NewKeeper
ModuleCdc = types.ModuleCdc
ParamStoreKeyConstantFee = types.ParamStoreKeyConstantFee
)
type (
GenesisState = types.GenesisState
MsgVerifyInvariant = types.MsgVerifyInvariant
InvarRoute = types.InvarRoute
Keeper = keeper.Keeper
)