Browse Source

do_export_privkeys: replace wallet.seed with is_watching_only

283
ThomasV 11 years ago
parent
commit
8f19f9bf28
  1. 4
      gui/qt/main_window.py

4
gui/qt/main_window.py

@ -1882,8 +1882,8 @@ class ElectrumWindow(QMainWindow):
@protected @protected
def do_export_privkeys(self, password): def do_export_privkeys(self, password):
if not self.wallet.seed: if self.wallet.is_watching_only():
self.show_message(_("This wallet has no seed")) self.show_message(_("This is a watching-only wallet"))
return return
self.show_message("%s\n%s\n%s" % (_("WARNING: ALL your private keys are secret."), _("Exposing a single private key can compromise your entire wallet!"), _("In particular, DO NOT use 'redeem private key' services proposed by third parties."))) self.show_message("%s\n%s\n%s" % (_("WARNING: ALL your private keys are secret."), _("Exposing a single private key can compromise your entire wallet!"), _("In particular, DO NOT use 'redeem private key' services proposed by third parties.")))

Loading…
Cancel
Save