From 4f9cb3cebf4f1cd42f1da8d30745307ebb88a853 Mon Sep 17 00:00:00 2001 From: zebra-lucky Date: Wed, 22 Oct 2025 16:42:03 +0300 Subject: [PATCH] Qt: do not strip on password check --- 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 c128d17..b487cb4 100755 --- a/scripts/joinmarket-qt.py +++ b/scripts/joinmarket-qt.py @@ -2352,7 +2352,7 @@ class JMMainWindow(QMainWindow): echo_mode=QLineEdit.Password) if not ok: return False - pwd = str(text).strip().encode('utf-8') + pwd = text.encode('utf-8') match = self.wallet_service.check_wallet_passphrase(pwd) if not match: asyncio.ensure_future(