Fix NoneType
This commit is contained in:
parent
96081e20fe
commit
0a67334e77
@ -48,13 +48,15 @@ def refresh_whitelist(whitelist: List[str]) -> List[str]:
|
||||
'Ignoring %s from whitelist (reason: %s).',
|
||||
pair, status.get('Notice') or 'wallet is not active'
|
||||
)
|
||||
# Wallet will be delisted soon (and cause a loss)
|
||||
if "delisted" in status['Notice']:
|
||||
# Wallet is going to be delisted (and cause a loss)
|
||||
delisted = 'delisted'
|
||||
if delisted in str(status['Notice']):
|
||||
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]
|
||||
|
Loading…
Reference in New Issue
Block a user