Skip to content

Commit

Permalink
WIP - rebase onto other fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gbjk committed Jul 17, 2024
1 parent cbf020c commit 52f9f16
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions exchanges/kucoin/kucoin_wrapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"context"
"errors"
"fmt"
"slices"
"sort"
"strings"
"time"
Expand Down Expand Up @@ -144,7 +143,7 @@ func (ku *Kucoin) SetDefaults() {
GlobalResultLimit: 1500,
},
},
Subscriptions: slices.Clone(defaultSubscriptions),
Subscriptions: defaultSubscriptions.Clone(),
}
ku.Requester, err = request.New(ku.Name,
common.NewHTTPClientWithTimeout(exchange.DefaultHTTPTimeout),
Expand Down

0 comments on commit 52f9f16

Please sign in to comment.