electrum

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

commit 1b7d8c0387734463dca66ddc978b4c966320272d
parent dc55cf4b2d23d84bcde26448c85f0842d611063e
Author: ThomasV <thomasv@electrum.org>
Date:   Thu, 11 Mar 2021 14:44:13 +0100

Qt: rm gossip menu item: already available in toolbar, and channel_db is not always present

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

diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py @@ -743,7 +743,6 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger): tools_menu.addAction(_("Electrum preferences"), self.settings_dialog) tools_menu.addAction(_("&Network"), self.gui_object.show_network_dialog).setEnabled(bool(self.network)) - tools_menu.addAction(_("&Lightning Gossip"), self.gui_object.show_lightning_dialog).setEnabled(bool(self.wallet.has_lightning() and self.network)) tools_menu.addAction(_("Local &Watchtower"), self.gui_object.show_watchtower_dialog).setEnabled(bool(self.network and self.network.local_watchtower)) tools_menu.addAction(_("&Plugins"), self.plugins_dialog) tools_menu.addSeparator()