Removes the idea of seperating interface methods

This commit is contained in:
Scott
2016-09-11 14:58:06 +10:00
parent a24e908c24
commit 830c18c26d
3 changed files with 0 additions and 6 deletions

View File

@@ -292,8 +292,6 @@ func (h *HUOBI) SendAuthenticatedRequest(method string, v url.Values) error {
return nil
}
//Interface methods
//TODO: retrieve HUOBI balance info
//GetExchangeAccountInfo : Retrieves balances for all enabled currencies for the HUOBI exchange
func (e *HUOBI) GetExchangeAccountInfo() (ExchangeAccountInfo, error) {

View File

@@ -445,8 +445,6 @@ func (l *LocalBitcoins) SendAuthenticatedHTTPRequest(method, path string, values
return nil
}
//Interface methods
//GetExchangeAccountInfo : Retrieves balances for all enabled currencies for the LocalBitcoins exchange
func (e *LocalBitcoins) GetExchangeAccountInfo() (ExchangeAccountInfo, error) {
var response ExchangeAccountInfo

View File

@@ -1029,8 +1029,6 @@ func (p *Poloniex) SendAuthenticatedHTTPRequest(method, endpoint string, values
return nil
}
//Interface methods
//GetExchangeAccountInfo : Retrieves balances for all enabled currencies for the Poloniex exchange
func (e *Poloniex) GetExchangeAccountInfo() (ExchangeAccountInfo, error) {
var response ExchangeAccountInfo