Skip to content

Commit

Permalink
fixup! Kucoin: Switch to sub templating
Browse files Browse the repository at this point in the history
  • Loading branch information
gbjk committed Jul 16, 2024
1 parent a4b8c9a commit 38609a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion exchanges/kucoin/kucoin_wrapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"context"
"errors"
"fmt"
"slices"
"sort"
"strings"
"time"
Expand Down Expand Up @@ -143,7 +144,7 @@ func (ku *Kucoin) SetDefaults() {
GlobalResultLimit: 1500,
},
},
Subscriptions: defaultSubscriptions,
Subscriptions: slices.Clone(defaultSubscriptions),
}
ku.Requester, err = request.New(ku.Name,
common.NewHTTPClientWithTimeout(exchange.DefaultHTTPTimeout),
Expand Down

0 comments on commit 38609a0

Please sign in to comment.