mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-31 07:26:44 +00:00
Fixed stutter issues from exchange.go
This commit is contained in:
committed by
Adrian Gallagher
parent
7042da1e03
commit
de48b62731
@@ -19,7 +19,7 @@ const (
|
||||
)
|
||||
|
||||
type ItBit struct {
|
||||
exchange.ExchangeBase
|
||||
exchange.Base
|
||||
}
|
||||
|
||||
func (i *ItBit) SetDefaults() {
|
||||
|
||||
@@ -105,8 +105,8 @@ func (i *ItBit) GetOrderbookEx(p pair.CurrencyPair) (orderbook.OrderbookBase, er
|
||||
|
||||
//TODO Get current holdings from ItBit
|
||||
//GetExchangeAccountInfo : Retrieves balances for all enabled currencies for the ItBit exchange
|
||||
func (e *ItBit) GetExchangeAccountInfo() (exchange.ExchangeAccountInfo, error) {
|
||||
var response exchange.ExchangeAccountInfo
|
||||
func (e *ItBit) GetExchangeAccountInfo() (exchange.AccountInfo, error) {
|
||||
var response exchange.AccountInfo
|
||||
response.ExchangeName = e.GetName()
|
||||
return response, nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user