cosmos-sdk/x/ibc/02-client/simulation/genesis.go

14 lines
337 B
Go

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