0g-chain/x/validator-vesting/alias.go
2019-09-23 14:23:00 -04:00

23 lines
457 B
Go

// nolint
package validatorvesting
import (
"github.com/cosmos/cosmos-sdk/x/validator-vesting/internal/keeper"
"github.com/cosmos/cosmos-sdk/x/validator-vesting/internal/types"
)
const (
ModuleName = types.ModuleName
StoreKey = types.StoreKey
)
var (
NewGenesisState = types.NewGenesisState
)
type (
GenesisState = types.GenesisState
Keeper = keeper.Keeper
ValidatorVestingAccount = types.ValidatorVestingAccount
)