mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
Fix: replace print(e) with logger.debug in wallet.py (#2544)
Co-authored-by: al-munazzim <al-munazzim@users.noreply.github.com> Co-authored-by: k9ert <117085+k9ert@users.noreply.github.com>
This commit is contained in:
parent
621dbd23ea
commit
5b3a7935cb
1 changed files with 1 additions and 2 deletions
|
|
@ -949,8 +949,7 @@ class Wallet(AbstractWallet):
|
|||
)
|
||||
except Exception as e:
|
||||
# UTXO was spent
|
||||
print(e)
|
||||
pass
|
||||
logger.debug("Failed to lock UTXO %s: %s", utxo, e)
|
||||
logger.info(f"Freeze {utxo}")
|
||||
self.frozen_utxo.append(utxo)
|
||||
utxo_list_done.append(utxo)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue