adding bitstamp to list of bad exchanges.

This commit is contained in:
AlexV 2019-06-29 17:20:10 +02:00
parent 152e138c17
commit e8796e009c

View File

@ -723,7 +723,7 @@ class Exchange(object):
def is_exchange_bad(exchange: str) -> bool:
return exchange in ['bitmex']
return exchange in ['bitmex', 'bitstamp']
def is_exchange_available(exchange: str, ccxt_module=None) -> bool: