From 9e437e4a6afbc4787d064e717deb6b42072b097d Mon Sep 17 00:00:00 2001 From: Matthew Witkowski Date: Tue, 31 Oct 2023 14:47:18 -0400 Subject: [PATCH] Remove commented out code. --- x/ibcratelimit/module/module.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/x/ibcratelimit/module/module.go b/x/ibcratelimit/module/module.go index f88cc12be4..326a19df25 100644 --- a/x/ibcratelimit/module/module.go +++ b/x/ibcratelimit/module/module.go @@ -106,29 +106,21 @@ func (am AppModule) GenerateGenesisState(simState *module.SimulationState) { // ProposalContents returns content functions used to simulate governance proposals. func (am AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedProposalContent { - // currently no gov proposals exist return nil } // RandomizedParams returns randomized module parameters for param change proposals. func (am AppModule) RandomizedParams(_ *rand.Rand) []simtypes.ParamChange { - // currently no module params exist return nil } // RegisterStoreDecoder registers a func to decode each module's defined types from their corresponding store key func (am AppModule) RegisterStoreDecoder(_ sdk.StoreDecoderRegistry) { - // TODO When we finish sim tests - // sdr[types.StoreKey] = simulation.NewDecodeStore(am.cdc) } // WeightedOperations returns simulation operations (i.e msgs) with their respective weight func (am AppModule) WeightedOperations(_ module.SimulationState) []simtypes.WeightedOperation { return []simtypes.WeightedOperation{} - // TODO When we get sim tests - /*return simulation.WeightedOperations( - simState.AppParams, simState.Cdc, am.keeper, am.accountKeeper, am.bankKeeper, - )*/ } // Name returns the ibcratelimit module's name.