cosmos-sdk/x/ibc/03-connection/simulation/genesis.go

14 lines
353 B
Go

package simulation
import (
"math/rand"
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
"github.com/cosmos/cosmos-sdk/x/ibc/03-connection/types"
)
// GenConnectionGenesis returns the default connection genesis state.
func GenConnectionGenesis(_ *rand.Rand, _ []simtypes.Account) types.GenesisState {
return types.DefaultGenesisState()
}