Browse Source
ln_message: trigger notification instead of popup
regtest_lnd
ThomasV
6 years ago
committed by
SomberNight
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
1 deletions
-
electrum/gui/qt/main_window.py
|
|
@ -407,7 +407,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger): |
|
|
|
elif event == 'ln_message': |
|
|
|
lnworker, message, htlc_id = args |
|
|
|
if lnworker == self.wallet.lnworker: |
|
|
|
self.show_message(message) |
|
|
|
self.notify(message) |
|
|
|
else: |
|
|
|
self.logger.info(f"unexpected network_qt signal: {event} {args}") |
|
|
|
|
|
|
|