Skip to content

Commit

Permalink
pytest debugging ONLY. Have to rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
relativisticelectron committed Oct 3, 2022
1 parent 7aa4882 commit ccee38f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/cryptoadvance/specter/managers/wallet_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,14 @@ def _update(self, wallets_update_list: Dict):
else:
# Wallet is already there
# we only need to update
self.wallets[wallet_name].update()
try:

self.wallets[wallet_name].update()
except Exception as e:
logger.info(
f"self.wallets.keys={list(self.wallets.keys())}, wallet_name={wallet_name}, existing_names={existing_names}"
)
raise e
# only ignore rpc errors
except RpcError as e:
logger.error(f"Failed updating wallet manager. RPC error: {e}")
Expand Down

0 comments on commit ccee38f

Please sign in to comment.