Browse Source

fix typo in warning message shown when enabling lightning (#7782)

patch-4
Rogach 3 years ago
committed by GitHub
parent
commit
6d049a30f2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      electrum/gui/kivy/main_window.py
  2. 2
      electrum/gui/qt/main_window.py

2
electrum/gui/kivy/main_window.py

@ -1461,7 +1461,7 @@ class ElectrumWindow(App, Logger):
else:
msg = _(
"Warning: this wallet type does not support channel recovery from seed. "
"You will need to backup your wallet everytime you create a new wallet. "
"You will need to backup your wallet everytime you create a new channel. "
"Create lightning keys?")
d = Question(msg, self._enable_lightning, title=_('Enable Lightning?'))
d.open()

2
electrum/gui/qt/main_window.py

@ -2608,7 +2608,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger):
else:
msg = _(
"Warning: this wallet type does not support channel recovery from seed. "
"You will need to backup your wallet everytime you create a new wallet. "
"You will need to backup your wallet everytime you create a new channel. "
"Create lightning keys?")
if self.question(msg):
self._init_lightning_dialog(dialog=dialog)

Loading…
Cancel
Save