electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit ed4cecf19c125a861684c0ae5cae1776e063a1f2
parent ef7a59b4a97fddcdf354f8a3a599714fbe4e6284
Author: ThomasV <thomasv@electrum.org>
Date:   Wed, 27 Feb 2019 09:53:13 +0100

ln_message: trigger notification instead of popup

Diffstat:
Melectrum/gui/qt/main_window.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py @@ -406,7 +406,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}")