cosmos-sdk/x/capability/types/genesis.go

12 lines
283 B
Go

package types
// GenesisState represents the Capability module genesis state
type GenesisState struct {
Index uint64 `json:"index" yaml:"index"`
}
// DefaultGenesis returns the default Capability genesis state
func DefaultGenesis() GenesisState {
return GenesisState{Index: 1}
}