From 4b586d9cf0b20ede7bcf59817487e52aa8d4886b Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 31 Mar 2021 09:51:16 +0200 Subject: [PATCH] kivy: remove dead code (follow-up 64a931f21e) --- electrum/gui/kivy/main_window.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/electrum/gui/kivy/main_window.py b/electrum/gui/kivy/main_window.py index 6205de3a5..4f18e43a5 100644 --- a/electrum/gui/kivy/main_window.py +++ b/electrum/gui/kivy/main_window.py @@ -1392,14 +1392,6 @@ class ElectrumWindow(App, Logger): status = _('Enabled') else: status = _('Enabled, non-recoverable channels') - if self.wallet.db.get('seed_type') == 'segwit': - msg = _("Your channels cannot be recovered from seed, because they were created with an old version of Electrum. " - "This means that you must save a backup of your wallet everytime you create a new channel.\n\n" - "If you want this wallet to have recoverable channels, you must close your existing channels and restore this wallet from seed") - else: - msg = _("Your channels cannot be recovered from seed. " - "This means that you must save a backup of your wallet everytime you create a new channel.\n\n" - "If you want to have recoverable channels, you must create a new wallet with an Electrum seed") else: if self.wallet.can_have_lightning(): status = _('Not enabled')