From 7279fc8902ae4b9c3325a5c996ad69e4c1210d9c Mon Sep 17 00:00:00 2001 From: SomberNight Date: Wed, 10 Jan 2018 14:56:45 +0100 Subject: [PATCH] qt privkey export: if multisig wallet, warn users re backup --- gui/qt/main_window.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 8a6cb9ad9..982a7382f 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -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)