Browse Source

followup 4eb63be0, fix async callbacks call

add_frost_channel_encryption
zebra-lucky 2 months ago
parent
commit
e90451ad71
  1. 3
      scripts/joinmarket-qt.py

3
scripts/joinmarket-qt.py

@ -1844,7 +1844,8 @@ class JMMainWindow(QMainWindow):
def stopReceiver(self):
if self.backend_receiver is None:
return
self.backend_receiver.shutdown()
asyncio.ensure_future(
self.backend_receiver.shutdown())
def showAboutDialog(self):
msgbox = QDialog(self)

Loading…
Cancel
Save