Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rbajollari committed Oct 18, 2023
1 parent d4fecab commit 7cbde35
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion x/oracle/keeper/msg_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,9 @@ func (ms msgServer) GovRemoveCurrencyDeviationThresholds(
}

for _, curr := range msg.Currencies {
plan.Changes.CurrencyDeviationThresholds = plan.Changes.CurrencyDeviationThresholds.RemovePair(strings.ToUpper(curr))
plan.Changes.CurrencyDeviationThresholds = plan.Changes.CurrencyDeviationThresholds.RemovePair(
strings.ToUpper(curr),
)
}

// validate plan construction before scheduling
Expand Down

0 comments on commit 7cbde35

Please sign in to comment.