diff --git a/x/epochs/module.go b/x/epochs/module.go index 06cad8fe..0b856169 100644 --- a/x/epochs/module.go +++ b/x/epochs/module.go @@ -4,7 +4,6 @@ import ( "context" "encoding/json" "fmt" - "math/rand" "github.com/cosmos/cosmos-sdk/baseapp" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" @@ -165,11 +164,6 @@ func (AppModule) ProposalContents(simState module.SimulationState) []simtypes.We return []simtypes.WeightedProposalContent{} } -// RandomizedParams creates randomizedepochs param changes for the simulator. -func (AppModule) RandomizedParams(r *rand.Rand) []simtypes.LegacyParamChange { - return []simtypes.LegacyParamChange{} -} - // RegisterStoreDecoder registers a decoder for supply module's types func (am AppModule) RegisterStoreDecoder(sdr simtypes.StoreDecoderRegistry) { } diff --git a/x/erc20/module.go b/x/erc20/module.go index 8753b4fc..d159103f 100644 --- a/x/erc20/module.go +++ b/x/erc20/module.go @@ -4,7 +4,6 @@ import ( "context" "encoding/json" "fmt" - "math/rand" "github.com/Canto-Network/Canto/v7/x/erc20/simulation" abci "github.com/cometbft/cometbft/abci/types" @@ -163,10 +162,6 @@ func (am AppModule) ProposalContents(simState module.SimulationState) []simtypes return []simtypes.WeightedProposalContent{} } -func (am AppModule) RandomizedParams(r *rand.Rand) []simtypes.LegacyParamChange { - return []simtypes.LegacyParamChange{} -} - func (am AppModule) RegisterStoreDecoder(decoderRegistry simtypes.StoreDecoderRegistry) { } diff --git a/x/govshuttle/module_simulation.go b/x/govshuttle/module_simulation.go index 4ceed0de..cfe1bb57 100644 --- a/x/govshuttle/module_simulation.go +++ b/x/govshuttle/module_simulation.go @@ -1,8 +1,6 @@ package govshuttle import ( - "math/rand" - //"github.com/Canto-Network/Canto/v2/testutil/sample" govshuttlesimulation "github.com/Canto-Network/Canto/v7/x/govshuttle/simulation" "github.com/Canto-Network/Canto/v7/x/govshuttle/types" @@ -44,12 +42,6 @@ func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedP return nil } -// RandomizedParams creates randomized param changes for the simulator -func (am AppModule) RandomizedParams(_ *rand.Rand) []simtypes.LegacyParamChange { - - return []simtypes.LegacyParamChange{} -} - // RegisterStoreDecoder registers a decoder func (am AppModule) RegisterStoreDecoder(_ simtypes.StoreDecoderRegistry) {} diff --git a/x/inflation/module.go b/x/inflation/module.go index ffe593e6..467fcee7 100644 --- a/x/inflation/module.go +++ b/x/inflation/module.go @@ -4,7 +4,6 @@ import ( "context" "encoding/json" "fmt" - "math/rand" "github.com/Canto-Network/Canto/v7/x/inflation/simulation" abci "github.com/cometbft/cometbft/abci/types" @@ -178,11 +177,6 @@ func (AppModule) ProposalMsgs(simState module.SimulationState) []simtypes.Weight return simulation.ProposalMsgs() } -// RandomizedParams creates randomized inflation param changes for the simulator. -func (am AppModule) RandomizedParams(r *rand.Rand) []simtypes.LegacyParamChange { - return []simtypes.LegacyParamChange{} -} - // RegisterStoreDecoder registers a decoder for inflation module's types. func (am AppModule) RegisterStoreDecoder(decoderRegistry simtypes.StoreDecoderRegistry) { } diff --git a/x/onboarding/module.go b/x/onboarding/module.go index 7cbac388..a4b75dca 100644 --- a/x/onboarding/module.go +++ b/x/onboarding/module.go @@ -4,7 +4,6 @@ import ( "context" "encoding/json" "fmt" - "math/rand" "github.com/cosmos/cosmos-sdk/baseapp" "github.com/grpc-ecosystem/grpc-gateway/runtime" @@ -140,10 +139,6 @@ func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedP return []simtypes.WeightedProposalContent{} } -func (AppModule) RandomizedParams(_ *rand.Rand) []simtypes.LegacyParamChange { - return []simtypes.LegacyParamChange{} -} - func (AppModule) RegisterStoreDecoder(_ simtypes.StoreDecoderRegistry) { }