Skip to content

Commit

Permalink
linter: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan O'Hara-Reid committed May 6, 2024
1 parent f1c8992 commit 67e3393
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions currency/pairs.go
Original file line number Diff line number Diff line change
Expand Up @@ -501,9 +501,8 @@ func (p Pairs) FindMatchingPairs(b Pairs) Pairs {
outgoing := func() Pairs {
if len(p) < len(b) {
return make(Pairs, 0, len(p))
} else {
return make(Pairs, 0, len(b))
}
return make(Pairs, 0, len(b))
}()
for i := range b {
key := equalKey{Base: b[i].Base.Item, Quote: b[i].Quote.Item}
Expand Down

0 comments on commit 67e3393

Please sign in to comment.