mirror of
https://github.com/basicswap/basicswap.git
synced 2024-11-16 15:58:17 +00:00
ui: Skip cached info if coin was disabled
This commit is contained in:
parent
ad1de44dca
commit
b8ea028d04
1 changed files with 5 additions and 0 deletions
|
@ -5021,6 +5021,11 @@ class BasicSwap(BaseApp):
|
|||
q = session.execute(query_str)
|
||||
for row in q:
|
||||
coin_id = row[0]
|
||||
|
||||
if self.coin_clients[coin_id]['connection_type'] != 'rpc':
|
||||
# Skip cached info if coin was disabled
|
||||
continue
|
||||
|
||||
wallet_data = json.loads(row[1])
|
||||
wallet_data['lastupdated'] = row[2]
|
||||
wallet_data['updating'] = self._updating_wallets_info.get(coin_id, False)
|
||||
|
|
Loading…
Reference in a new issue