Browse Source

Fixed copy_master_public_key()

283
slush 12 years ago
parent
commit
dd630a8bb7
  1. 2
      gui/gui_lite.py

2
gui/gui_lite.py

@ -912,7 +912,7 @@ class MiniActuator:
def copy_master_public_key(self):
master_pubkey = self.wallet.master_public_key
master_pubkey = self.wallet.get_master_public_key()
qApp.clipboard().setText(master_pubkey)
QMessageBox.information(None, _("Copy successful"), _("Your master public key has been copied to your clipboard."))

Loading…
Cancel
Save