Merge pull request #1984 from asmodehn/bitstamp_bad

adding bitstamp to list of bad exchanges.
This commit is contained in:
Matthias 2019-06-29 19:51:01 +02:00 committed by GitHub
commit a0cdc63a5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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: