Skip to content

Commit 1a78bb5

Browse files
committed
1 parent a9d122e commit 1a78bb5

File tree

2 files changed

+0
-23
lines changed

2 files changed

+0
-23
lines changed

x/ccv/consumer/module.go

-12
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import (
44
"context"
55
"encoding/json"
66
"fmt"
7-
"math/rand"
87

98
abci "github.com/cometbft/cometbft/abci/types"
109
"github.com/gorilla/mux"
@@ -211,17 +210,6 @@ func (am AppModule) EndBlock(ctx sdk.Context, req abci.RequestEndBlock) []abci.V
211210
func (AppModule) GenerateGenesisState(simState *module.SimulationState) {
212211
}
213212

214-
// ProposalContents doesn't return any content functions for governance proposals.
215-
func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedProposalContent {
216-
return nil
217-
}
218-
219-
// RandomizedParams creates randomized consumer param changes for the simulator.
220-
// TODO
221-
func (AppModule) RandomizedParams(r *rand.Rand) []simtypes.ParamChange {
222-
return nil
223-
}
224-
225213
// RegisterStoreDecoder registers a decoder for consumer module's types
226214
// TODO
227215
func (am AppModule) RegisterStoreDecoder(sdr sdk.StoreDecoderRegistry) {

x/ccv/provider/module.go

-11
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import (
44
"context"
55
"encoding/json"
66
"fmt"
7-
"math/rand"
87

98
abci "github.com/cometbft/cometbft/abci/types"
109
"github.com/cosmos/cosmos-sdk/client"
@@ -173,16 +172,6 @@ func (am AppModule) EndBlock(ctx sdk.Context, req abci.RequestEndBlock) []abci.V
173172
func (AppModule) GenerateGenesisState(simState *module.SimulationState) {
174173
}
175174

176-
// ProposalContents doesn't return any content functions for governance proposals.
177-
func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedProposalContent {
178-
return nil
179-
}
180-
181-
// RandomizedParams creates randomized provider param changes for the simulator.
182-
func (AppModule) RandomizedParams(r *rand.Rand) []simtypes.ParamChange {
183-
return nil
184-
}
185-
186175
// RegisterStoreDecoder registers a decoder for provider module's types
187176
func (am AppModule) RegisterStoreDecoder(sdr sdk.StoreDecoderRegistry) {
188177
}

0 commit comments

Comments
 (0)