Browse Source

keystore: 'get_tx_derivations' no longer public

hard-fail-on-bad-server-string
SomberNight 5 years ago
parent
commit
07f5d6b745
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 15
      electrum/keystore.py
  2. 2
      electrum/plugins/trustedcoin/cmdline.py
  3. 2
      electrum/plugins/trustedcoin/qt.py
  4. 2
      electrum/plugins/trustedcoin/trustedcoin.py

15
electrum/keystore.py

@ -33,6 +33,7 @@ from abc import ABC, abstractmethod
from . import bitcoin, ecc, constants, bip32
from .bitcoin import deserialize_privkey, serialize_privkey
from .transaction import Transaction, PartialTransaction, PartialTxInput, PartialTxOutput
from .bip32 import (convert_bip32_path_to_list_of_uint32, BIP32_PRIME,
is_xpub, is_xprv, BIP32Node, normalize_bip32_derivation,
convert_bip32_intpath_to_strpath)
@ -47,7 +48,6 @@ from .logging import Logger
if TYPE_CHECKING:
from .gui.qt.util import TaskThread
from .transaction import Transaction, PartialTransaction, PartialTxInput, PartialTxOutput
from .plugins.hw_wallet import HW_PluginBase, HardwareClientBase
@ -75,7 +75,7 @@ class KeyStore(Logger, ABC):
"""Returns whether the keystore can be encrypted with a password."""
pass
def get_tx_derivations(self, tx: 'PartialTransaction') -> Dict[str, Union[Sequence[int], str]]:
def _get_tx_derivations(self, tx: 'PartialTransaction') -> Dict[str, Union[Sequence[int], str]]:
keypairs = {}
for txin in tx.inputs():
if txin.is_complete():
@ -90,10 +90,13 @@ class KeyStore(Logger, ABC):
keypairs[pubkey.hex()] = derivation
return keypairs
def can_sign(self, tx) -> bool:
if self.is_watching_only():
def can_sign(self, tx: 'Transaction', *, ignore_watching_only=False) -> bool:
"""Returns whether this keystore could sign *something* in this tx."""
if not ignore_watching_only and self.is_watching_only():
return False
if not isinstance(tx, PartialTransaction):
return False
return bool(self.get_tx_derivations(tx))
return bool(self._get_tx_derivations(tx))
def ready_to_sign(self) -> bool:
return not self.is_watching_only()
@ -169,7 +172,7 @@ class Software_KeyStore(KeyStore):
# Raise if password is not correct.
self.check_password(password)
# Add private keys
keypairs = self.get_tx_derivations(tx)
keypairs = self._get_tx_derivations(tx)
for k, v in keypairs.items():
keypairs[k] = self.get_private_key(v, password)
# Sign

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/'].get_tx_derivations(tx):
if wallet.keystores['x3/'].can_sign(tx, ignore_watching_only=True):
msg = _('Please enter your Google Authenticator code:')
auth_code = int(input(msg))
else:

2
electrum/plugins/trustedcoin/qt.py

@ -66,7 +66,7 @@ class HandlerTwoFactor(QObject, Logger):
return
if wallet.can_sign_without_server():
return
if not wallet.keystores['x3/'].get_tx_derivations(tx):
if not wallet.keystores['x3/'].can_sign(tx, ignore_watching_only=True):
self.logger.info("twofactor: xpub3 not needed")
return
window = self.window.top_level_window()

2
electrum/plugins/trustedcoin/trustedcoin.py

@ -458,7 +458,7 @@ class TrustedCoinPlugin(BasePlugin):
return
if wallet.can_sign_without_server():
return
if not wallet.keystores['x3/'].get_tx_derivations(tx):
if not wallet.keystores['x3/'].can_sign(tx, ignore_watching_only=True):
self.logger.info("twofactor: xpub3 not needed")
return
def wrapper(tx):

Loading…
Cancel
Save