From 29a81f30402bb5bc54f53437295e4584c1f81b4a Mon Sep 17 00:00:00 2001 From: Adrian Gallagher Date: Mon, 12 Feb 2018 15:32:01 +1100 Subject: [PATCH] Fix binance path --- exchanges/binance/binance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }