Various improvements

This commit is contained in:
Adrian Gallagher
2018-01-03 18:36:13 +11:00
parent 301257427e
commit 2446007b03
6 changed files with 31 additions and 17 deletions

View File

@@ -196,7 +196,6 @@ func (g *GDAX) GetTicker(currencyPair string) (Ticker, error) {
path := fmt.Sprintf(
"%s/%s/%s", g.APIUrl+gdaxProducts, currencyPair, gdaxTicker)
log.Println(path)
return ticker, common.SendHTTPGetRequest(path, true, g.Verbose, &ticker)
}