From 8936cfcc72fc6fd1c359722bf9e3f7d684f6f4c0 Mon Sep 17 00:00:00 2001 From: Adam Gibson Date: Sun, 24 Nov 2019 20:27:29 +0000 Subject: [PATCH] Fixes #445 The variable mnemonic_extension is already of type str and so the call to decode() in displayWords was a bug. --- scripts/joinmarket-qt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/joinmarket-qt.py b/scripts/joinmarket-qt.py index 8229e16..420bf04 100644 --- a/scripts/joinmarket-qt.py +++ b/scripts/joinmarket-qt.py @@ -1672,7 +1672,7 @@ class JMMainWindow(QMainWindow): mb.setText("
".join(seed_recovery_warning)) text = "" + words + "" if mnemonic_extension: - text += "

Seed extension: " + mnemonic_extension.decode("utf-8") + "" + text += "

Seed extension: " + mnemonic_extension + "" mb.setInformativeText(text) mb.setStandardButtons(QMessageBox.Ok) ret = mb.exec_()