Skip to content

Commit

Permalink
[1658]: Lint fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
SpicyLemon committed Oct 9, 2023
1 parent 4180e8e commit fc656c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions x/exchange/keeper/fulfillment.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion x/exchange/module/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{} }
Expand Down
1 change: 1 addition & 0 deletions x/exchange/simulation/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
}

0 comments on commit fc656c9

Please sign in to comment.