From 0273659e6e4327289fcb717e64376fa253922469 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Tue, 17 Oct 2023 14:33:05 +0000 Subject: [PATCH] trustedcoin: fix keystore name (2) follow-up 56e80c20d70ec93e9d497fae8c0f79cd096fd8ee --- electrum/plugins/trustedcoin/cmdline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/plugins/trustedcoin/cmdline.py b/electrum/plugins/trustedcoin/cmdline.py index 0b2da8491..30b2f3501 100644 --- a/electrum/plugins/trustedcoin/cmdline.py +++ b/electrum/plugins/trustedcoin/cmdline.py @@ -36,7 +36,7 @@ class Plugin(TrustedCoinPlugin): if not wallet.can_sign_without_server(): self.logger.info("twofactor:sign_tx") auth_code = None - if wallet.keystores['x3/'].can_sign(tx, ignore_watching_only=True): + if wallet.keystores['x3'].can_sign(tx, ignore_watching_only=True): msg = _('Please enter your Google Authenticator code:') auth_code = int(input(msg)) else: