Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyaoy committed Dec 13, 2024
1 parent a11b8b6 commit adf28e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion protocol/app/msgs/normal_msgs.go
Original file line number Diff line number Diff line change
Expand Up @@ -273,9 +273,9 @@ var (
"/slinky.marketmap.v1.MsgCreateMarketsResponse": nil,
"/slinky.marketmap.v1.MsgParams": &marketmapmoduletypes.MsgParams{},
"/slinky.marketmap.v1.MsgParamsResponse": nil,
"/slinky.marketmap.v1.MsgRemoveMarketAuthorities": &marketmapmoduletypes.MsgRemoveMarketAuthorities{},
"/slinky.marketmap.v1.MsgRemoveMarkets": &marketmapmoduletypes.MsgRemoveMarkets{},
"/slinky.marketmap.v1.MsgRemoveMarketsResponse": nil,
"/slinky.marketmap.v1.MsgRemoveMarketAuthorities": &marketmapmoduletypes.MsgRemoveMarketAuthorities{},
"/slinky.marketmap.v1.MsgRemoveMarketAuthoritiesResponse": nil,
"/slinky.marketmap.v1.MsgUpdateMarkets": &marketmapmoduletypes.MsgUpdateMarkets{},
"/slinky.marketmap.v1.MsgUpdateMarketsResponse": nil,
Expand Down
2 changes: 1 addition & 1 deletion protocol/x/prices/keeper/slinky_adapter.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,6 @@ func (k Keeper) GetNumRemovedCurrencyPairs(_ sdk.Context) (uint64, error) {

// GetAllCurrencyPairs is not used with the DefaultCurrencyPair strategy.
// See https://github.com/skip-mev/slinky/blob/main/abci/strategies/currencypair/default.go
func (k Keeper) GetAllCurrencyPairs(ctx sdk.Context) []slinkytypes.CurrencyPair {
func (k Keeper) GetAllCurrencyPairs(_ sdk.Context) []slinkytypes.CurrencyPair {
return nil
}

0 comments on commit adf28e5

Please sign in to comment.