1
0

qml: fix missing param in userNotify

This commit is contained in:
Sander van Grieken
2022-08-27 13:41:59 +02:00
parent 12e628e2e6
commit 291ca40c9e

View File

@@ -463,7 +463,7 @@ class QEWallet(AuthMixin, QObject, QtEventListener):
fut = asyncio.run_coroutine_threadsafe(coro, self.wallet.network.asyncio_loop)
fut.result()
except Exception as e:
self.userNotify.emit(repr(e))
self.userNotify.emit(self.wallet, repr(e))
threading.Thread(target=pay_thread).start()