1
0

qewallet: fix useNotify signal emit

This commit is contained in:
Sander van Grieken
2022-07-08 16:27:18 +02:00
parent 2c656a0cf7
commit 2c92174ee0

View File

@@ -443,7 +443,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(repr(e))
self.userNotify.emit(repr(e))
threading.Thread(target=pay_thread).start()