commit c5dae933ee3707ad738decdfece0b0c63010592a
parent 7cf547c4b812a2b0d899038acbd6252a40d45ed7
Author: ThomasV <thomasv@electrum.org>
Date: Wed, 10 Jan 2018 16:56:00 +0100
Merge pull request #3690 from SomberNight/multisig_privkey_export_warning
qt privkey export: if multisig wallet, warn users re backup
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
@@ -2240,6 +2240,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)