mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-14 07:26:47 +00:00
Bittrex skip over empty market name
This commit is contained in:
@@ -32,7 +32,7 @@ func (b *Bittrex) Run() {
|
||||
}
|
||||
var currencies []string
|
||||
for x := range exchangeProducts {
|
||||
if !exchangeProducts[x].IsActive {
|
||||
if !exchangeProducts[x].IsActive || exchangeProducts[x].MarketName == "" {
|
||||
continue
|
||||
}
|
||||
currencies = append(currencies, exchangeProducts[x].MarketName)
|
||||
|
||||
Reference in New Issue
Block a user