mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-06-05 15:10:59 +00:00
Fixed stutter issues from exchange.go
This commit is contained in:
committed by
Adrian Gallagher
parent
7042da1e03
commit
de48b62731
@@ -43,7 +43,7 @@ const (
|
||||
)
|
||||
|
||||
type BTCC struct {
|
||||
exchange.ExchangeBase
|
||||
exchange.Base
|
||||
}
|
||||
|
||||
func (b *BTCC) SetDefaults() {
|
||||
|
||||
@@ -92,8 +92,8 @@ func (b *BTCC) GetOrderbookEx(p pair.CurrencyPair) (orderbook.OrderbookBase, err
|
||||
|
||||
//TODO: Retrieve BTCC info
|
||||
//GetExchangeAccountInfo : Retrieves balances for all enabled currencies for the Kraken exchange
|
||||
func (e *BTCC) GetExchangeAccountInfo() (exchange.ExchangeAccountInfo, error) {
|
||||
var response exchange.ExchangeAccountInfo
|
||||
func (e *BTCC) GetExchangeAccountInfo() (exchange.AccountInfo, error) {
|
||||
var response exchange.AccountInfo
|
||||
response.ExchangeName = e.GetName()
|
||||
return response, nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user