Browse Source

trustedcoin: fix keystore name (2)

follow-up 56e80c20d7
master
SomberNight 2 years ago
parent
commit
0273659e6e
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/plugins/trustedcoin/cmdline.py

2
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:

Loading…
Cancel
Save