Skip to content

Commit 0be0d79

Browse files
authored
chore: ics29 module housekeeping cleanup (#1227)
1 parent 8451c63 commit 0be0d79

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

modules/apps/29-fee/module.go

+3-10
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ import (
2020
"github.com/cosmos/ibc-go/v3/modules/apps/29-fee/client/cli"
2121
"github.com/cosmos/ibc-go/v3/modules/apps/29-fee/keeper"
2222
"github.com/cosmos/ibc-go/v3/modules/apps/29-fee/types"
23-
24-
// "github.com/cosmos/ibc-go/v3/modules/apps/29-fee/client/cli"
25-
// "github.com/cosmos/ibc-go/v3/modules/apps/29-fee/simulation"
26-
2723
porttypes "github.com/cosmos/ibc-go/v3/modules/core/05-port/types"
2824
)
2925

@@ -99,7 +95,6 @@ func NewAppModule(k keeper.Keeper) AppModule {
9995

10096
// RegisterInvariants implements the AppModule interface
10197
func (AppModule) RegisterInvariants(ir sdk.InvariantRegistry) {
102-
// TODO
10398
}
10499

105100
// Route implements the AppModule interface
@@ -154,7 +149,7 @@ func (am AppModule) EndBlock(ctx sdk.Context, req abci.RequestEndBlock) []abci.V
154149
// AppModuleSimulation functions
155150

156151
// GenerateGenesisState creates a randomized GenState of the 29-fee module.
157-
func (AppModule) GenerateGenesisState(simState *module.SimulationState) {
152+
func (AppModule) GenerateGenesisState(_ *module.SimulationState) {
158153
}
159154

160155
// ProposalContents doesn't return any content functions for governance proposals.
@@ -163,14 +158,12 @@ func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedP
163158
}
164159

165160
// RandomizedParams creates randomized ibc-29-fee param changes for the simulator.
166-
func (AppModule) RandomizedParams(r *rand.Rand) []simtypes.ParamChange {
167-
// return simulation.ParamChanges(r)
161+
func (AppModule) RandomizedParams(_ *rand.Rand) []simtypes.ParamChange {
168162
return nil
169163
}
170164

171165
// RegisterStoreDecoder registers a decoder for 29-fee module's types
172-
func (am AppModule) RegisterStoreDecoder(sdr sdk.StoreDecoderRegistry) {
173-
// sdr[types.StoreKey] = simulation.NewDecodeStore(am.keeper)
166+
func (am AppModule) RegisterStoreDecoder(_ sdk.StoreDecoderRegistry) {
174167
}
175168

176169
// WeightedOperations returns the all the 29-fee module operations with their respective weights.

0 commit comments

Comments
 (0)