tMerge pull request #3690 from SomberNight/multisig_privkey_export_warning - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit c5dae933ee3707ad738decdfece0b0c63010592a DIR parent 7cf547c4b812a2b0d899038acbd6252a40d45ed7 HTML 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: M gui/qt/main_window.py | 4 ++++ 1 file changed, 4 insertions(+), 0 deletions(-) --- DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py t@@ -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)