mirror of
https://github.com/JoinMarket-Org/joinmarket-clientserver.git
synced 2026-08-13 12:33:40 +02:00
Fixes #445
The variable mnemonic_extension is already of type str and so the call to decode() in displayWords was a bug.
This commit is contained in:
parent
c52d1fb0d6
commit
8936cfcc72
1 changed files with 1 additions and 1 deletions
|
|
@ -1672,7 +1672,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.decode("utf-8") + "</strong>"
|
||||
text += "<br/><br/>Seed extension: <strong>" + mnemonic_extension + "</strong>"
|
||||
mb.setInformativeText(text)
|
||||
mb.setStandardButtons(QMessageBox.Ok)
|
||||
ret = mb.exec_()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue