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:
al-munazzim 2026-02-10 22:00:08 +01:00 committed by GitHub
parent 621dbd23ea
commit 5b3a7935cb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)