Skip to content

Commit

Permalink
Revert "pytest debugging ONLY. Have to rollback"
Browse files Browse the repository at this point in the history
This reverts commit ccee38f.
  • Loading branch information
relativisticelectron committed Oct 3, 2022
1 parent ccee38f commit 361eb04
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/cryptoadvance/specter/managers/wallet_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,14 +232,7 @@ def _update(self, wallets_update_list: Dict):
else:
# Wallet is already there
# we only need to 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
self.wallets[wallet_name].update()
# only ignore rpc errors
except RpcError as e:
logger.error(f"Failed updating wallet manager. RPC error: {e}")
Expand Down

0 comments on commit 361eb04

Please sign in to comment.