From 51a257f288f6b1eaa7dfa359f0ebcbde245c066b Mon Sep 17 00:00:00 2001 From: Kristaps Kaupe Date: Wed, 19 Dec 2018 23:17:20 +0200 Subject: [PATCH] Don't show password when loading wallet in JoinmarketQt Wrong parameter name, guess a bug introduced with 8e5826d4ead136eb6073cae6aa56ad4f62f13758. --- 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 54083af..cb11241 100644 --- a/scripts/joinmarket-qt.py +++ b/scripts/joinmarket-qt.py @@ -1359,7 +1359,7 @@ class JMMainWindow(QMainWindow): text, ok = QInputDialog.getText(self, 'Decrypt wallet', 'Enter your password:', - mode=QLineEdit.Password) + echo=QLineEdit.Password) if not ok: return pwd = str(text).strip()