0g-chain/x/validator-vesting/alias.go

32 lines
962 B
Go
Raw Normal View History

2019-09-23 18:23:00 +00:00
package validatorvesting
2019-09-27 18:48:57 +00:00
// nolint
// DONTCOVER
2019-09-23 18:23:00 +00:00
import (
2019-10-02 13:10:28 +00:00
"github.com/kava-labs/kava/x/validator-vesting/internal/keeper"
"github.com/kava-labs/kava/x/validator-vesting/internal/types"
2019-09-23 18:23:00 +00:00
)
const (
ModuleName = types.ModuleName
StoreKey = types.StoreKey
)
var (
2019-09-23 19:17:40 +00:00
NewValidatorVestingAccountRaw = types.NewValidatorVestingAccountRaw
NewValidatorVestingAccount = types.NewValidatorVestingAccount
NewGenesisState = types.NewGenesisState
DefaultGenesisState = types.DefaultGenesisState
RegisterCodec = types.RegisterCodec
ValidatorVestingAccountPrefix = types.ValidatorVestingAccountPrefix
2019-09-27 18:48:57 +00:00
BlocktimeKey = types.BlocktimeKey
2019-09-23 19:17:40 +00:00
ValidatorVestingAccountKey = types.ValidatorVestingAccountKey
NewKeeper = keeper.NewKeeper
2019-09-23 18:23:00 +00:00
)
type (
GenesisState = types.GenesisState
Keeper = keeper.Keeper
ValidatorVestingAccount = types.ValidatorVestingAccount
)