diff --git a/x/exchange/keeper/fulfillment.go b/x/exchange/keeper/fulfillment.go index b31a453bf8..45f2f0cedc 100644 --- a/x/exchange/keeper/fulfillment.go +++ b/x/exchange/keeper/fulfillment.go @@ -8,6 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" + "github.com/provenance-io/provenance/x/exchange" ) diff --git a/x/exchange/module/module.go b/x/exchange/module/module.go index aec803c054..646a1a8341 100644 --- a/x/exchange/module/module.go +++ b/x/exchange/module/module.go @@ -90,7 +90,7 @@ func (AppModuleBasic) RegisterInterfaces(registry cdctypes.InterfaceRegistry) { func (AppModuleBasic) RegisterLegacyAminoCodec(_ *codec.LegacyAmino) {} // RegisterInvariants registers the invariants for the exchange module. -func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry) {} +func (am AppModule) RegisterInvariants(_ sdk.InvariantRegistry) {} // Deprecated: Route returns the message routing key for the exchange module, empty. func (am AppModule) Route() sdk.Route { return sdk.Route{} } diff --git a/x/exchange/simulation/genesis.go b/x/exchange/simulation/genesis.go index 14ceb2129b..807784ce97 100644 --- a/x/exchange/simulation/genesis.go +++ b/x/exchange/simulation/genesis.go @@ -4,5 +4,6 @@ import "github.com/cosmos/cosmos-sdk/types/module" // RandomizedGenState generates a random GenesisState for the exchange module. func RandomizedGenState(simState *module.SimulationState) { + _ = simState // TODO[1658]: Write RandomizedGenState. }