Browse Source

qml: fix missing param in userNotify

patch-4
Sander van Grieken 2 years ago
parent
commit
291ca40c9e
  1. 2
      electrum/gui/qml/qewallet.py

2
electrum/gui/qml/qewallet.py

@ -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()

Loading…
Cancel
Save