1
0

qml: sweep: tone down logging

This commit is contained in:
Sander van Grieken
2024-10-08 12:19:21 +02:00
parent a8833eb650
commit fe95a5ec8f
2 changed files with 1 additions and 2 deletions

View File

@@ -146,7 +146,6 @@ ElDialog {
onClicked: { onClicked: {
console.log('sweeping') console.log('sweeping')
root.privateKeys = sweepkeys.text root.privateKeys = sweepkeys.text
console.log(root.privateKeys)
root.accept() root.accept()
} }
} }

View File

@@ -917,7 +917,7 @@ class QETxSweepFinalizer(QETxFinalizer):
def fetch_privkeys_info(): def fetch_privkeys_info():
try: try:
self._txins = self._wallet.wallet.network.run_from_another_thread(sweep_preparations(privkeys, self._wallet.wallet.network)) self._txins = self._wallet.wallet.network.run_from_another_thread(sweep_preparations(privkeys, self._wallet.wallet.network))
self._logger.info(f'txins {self._txins!r}') self._logger.debug(f'txins {self._txins!r}')
except UserFacingException as e: except UserFacingException as e:
self.warning = str(e) self.warning = str(e)
return return