cosmos-sdk/x/ibc/20-transfer/types/genesis.go

14 lines
276 B
Go

package types
// GenesisState is currently only used to ensure that the InitGenesis gets run
// by the module manager
type GenesisState struct {
PortID string `json:"portid" yaml:"portid"`
}
func DefaultGenesis() GenesisState {
return GenesisState{
PortID: PortID,
}
}