Browse Source

Fix "Show seed" in Qt for wallets with mnemonic extension

master
Kristaps Kaupe 6 years ago
parent
commit
6f90e30424
No known key found for this signature in database
GPG Key ID: D47B1B4232B55437
  1. 2
      scripts/joinmarket-qt.py

2
scripts/joinmarket-qt.py

@ -1773,7 +1773,7 @@ class JMMainWindow(QMainWindow):
mb.setText("<br/>".join(seed_recovery_warning))
text = "<strong>" + words + "</strong>"
if mnemonic_extension:
text += "<br/><br/>Seed extension: <strong>" + mnemonic_extension + "</strong>"
text += "<br/><br/>Seed extension: <strong>" + mnemonic_extension.decode('utf-8') + "</strong>"
mb.setInformativeText(text)
mb.setStandardButtons(QMessageBox.Ok)
ret = mb.exec_()

Loading…
Cancel
Save