@@ -20,10 +20,6 @@ import (
20
20
"github.com/cosmos/ibc-go/v3/modules/apps/29-fee/client/cli"
21
21
"github.com/cosmos/ibc-go/v3/modules/apps/29-fee/keeper"
22
22
"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
-
27
23
porttypes "github.com/cosmos/ibc-go/v3/modules/core/05-port/types"
28
24
)
29
25
@@ -99,7 +95,6 @@ func NewAppModule(k keeper.Keeper) AppModule {
99
95
100
96
// RegisterInvariants implements the AppModule interface
101
97
func (AppModule ) RegisterInvariants (ir sdk.InvariantRegistry ) {
102
- // TODO
103
98
}
104
99
105
100
// Route implements the AppModule interface
@@ -154,7 +149,7 @@ func (am AppModule) EndBlock(ctx sdk.Context, req abci.RequestEndBlock) []abci.V
154
149
// AppModuleSimulation functions
155
150
156
151
// GenerateGenesisState creates a randomized GenState of the 29-fee module.
157
- func (AppModule ) GenerateGenesisState (simState * module.SimulationState ) {
152
+ func (AppModule ) GenerateGenesisState (_ * module.SimulationState ) {
158
153
}
159
154
160
155
// ProposalContents doesn't return any content functions for governance proposals.
@@ -163,14 +158,12 @@ func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedP
163
158
}
164
159
165
160
// 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 {
168
162
return nil
169
163
}
170
164
171
165
// 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 ) {
174
167
}
175
168
176
169
// WeightedOperations returns the all the 29-fee module operations with their respective weights.
0 commit comments