added str.lower check

If someone can TEST my code quickly we can accept it and go
This commit is contained in:
seansan 2018-01-29 13:48:00 +01:00 committed by GitHub
parent 0a67334e77
commit 476c54cd9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,16 +48,14 @@ def refresh_whitelist(whitelist: List[str]) -> List[str]:
'Ignoring %s from whitelist (reason: %s).',
pair, status.get('Notice') or 'wallet is not active'
)
# Wallet is going to be delisted (and cause a loss)
delisted = 'delisted'
if delisted in str(status['Notice']):
# Wallet will be delisted soon (and cause a loss)
if 'delisted' in str(status['Notice']).lower():
sanitized_whitelist.remove(pair)
logger.info(
'Ignoring %s from whitelist (reason: %s).',
pair, status.get('Notice') or 'wallet will be delisted soon'
)
# We need to remove pairs that are unknown
final_list = [x for x in sanitized_whitelist if x in known_pairs]
return final_list