qml: fix missing param in userNotify
This commit is contained in:
@@ -463,7 +463,7 @@ class QEWallet(AuthMixin, QObject, QtEventListener):
|
|||||||
fut = asyncio.run_coroutine_threadsafe(coro, self.wallet.network.asyncio_loop)
|
fut = asyncio.run_coroutine_threadsafe(coro, self.wallet.network.asyncio_loop)
|
||||||
fut.result()
|
fut.result()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.userNotify.emit(repr(e))
|
self.userNotify.emit(self.wallet, repr(e))
|
||||||
|
|
||||||
threading.Thread(target=pay_thread).start()
|
threading.Thread(target=pay_thread).start()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user