diff --git a/exchanges/binance/binance.go b/exchanges/binance/binance.go index cbe5e629..73a40544 100644 --- a/exchanges/binance/binance.go +++ b/exchanges/binance/binance.go @@ -325,7 +325,7 @@ func (b *Binance) GetPriceChangeStats(symbol string) (PriceChangeStats, error) { // GetTickers returns the ticker data for the last 24 hrs func (b *Binance) GetTickers() ([]PriceChangeStats, error) { var resp []PriceChangeStats - path := fmt.Sprintf("%s/%s", apiURL, priceChange) + path := fmt.Sprintf("%s%s", apiURL, priceChange) return resp, common.SendHTTPGetRequest(path, true, b.Verbose, &resp) }