mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
kivy: display warning when first channel is opened
This commit is contained in:
parent
6a0ada3f79
commit
750147d931
1 changed files with 17 additions and 2 deletions
|
@ -741,8 +741,23 @@ class ElectrumWindow(App, Logger):
|
|||
if not self.wallet.has_lightning():
|
||||
self.show_error(_('Lightning is not enabled for this wallet'))
|
||||
return
|
||||
d = LightningOpenChannelDialog(self)
|
||||
d.open()
|
||||
if not self.wallet.lnworker.channels:
|
||||
warning1 = _("Lightning support in Electrum is experimental. "
|
||||
"Do not put large amounts in lightning channels.")
|
||||
warning2 = _("Funds stored in lightning channels are not recoverable "
|
||||
"from your seed. You must backup your wallet file everytime "
|
||||
"you create a new channel.")
|
||||
d = Question(_('Do you want to create your first channel?') +
|
||||
'\n\n' + warning1 + '\n\n' + warning2, self.open_channel_dialog_with_warning)
|
||||
d.open()
|
||||
else:
|
||||
d = LightningOpenChannelDialog(self)
|
||||
d.open()
|
||||
|
||||
def open_channel_dialog_with_warning(self, b):
|
||||
if b:
|
||||
d = LightningOpenChannelDialog(self)
|
||||
d.open()
|
||||
|
||||
def lightning_channels_dialog(self):
|
||||
if self._channels_dialog is None:
|
||||
|
|
Loading…
Add table
Reference in a new issue