* x/ibc: default genesis state for sims * add ibc and transfer module to simulations * minor update * remove TODO * add validation to transfer genesis * fix transfer init genesis * address @alexanderbez comments
14 lines
353 B
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()
|
|
}
|