mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +00:00
qt privkey export: if multisig wallet, warn users re backup
This commit is contained in:
parent
87737dbe45
commit
7279fc8902
1 changed files with 4 additions and 0 deletions
|
@ -2164,6 +2164,10 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
|
|||
self.show_message(_("This is a watching-only wallet"))
|
||||
return
|
||||
|
||||
if isinstance(self.wallet, Multisig_Wallet):
|
||||
self.show_message(_('WARNING: This is a multi-signature wallet.') + '\n' +
|
||||
_('It can not be "backed up" by simply exporting these private keys.'))
|
||||
|
||||
d = WindowModalDialog(self, _('Private keys'))
|
||||
d.setMinimumSize(850, 300)
|
||||
vbox = QVBoxLayout(d)
|
||||
|
|
Loading…
Add table
Reference in a new issue