Removed commented/debug println code.

This commit is contained in:
Adrian Gallagher
2015-05-12 18:27:58 +10:00
parent dca6928a10
commit bf5846e115
2 changed files with 0 additions and 2 deletions

View File

@@ -198,7 +198,6 @@ func SendHTTPGetRequest(url string, jsonDecode bool, result interface{}) (err er
}
contents, err := ioutil.ReadAll(res.Body)
//log.Println(string(contents))
if err != nil {
return err

View File

@@ -327,7 +327,6 @@ func (o *OKCoin) WebsocketFuturesOrderInfo(symbol, contractType string, orderID
values["status"] = strconv.Itoa(orderStatus)
values["current_page"] = strconv.Itoa(currentPage)
values["page_length"] = strconv.Itoa(pageLength)
log.Println(values)
o.AddChannelAuthenticated(OKCOIN_WEBSOCKET_FUTURES_ORDER_INFO, values)
}