qml: sweep: tone down logging
This commit is contained in:
@@ -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()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user