Browse Source

follow-up prev: add comment

hard-fail-on-bad-server-string
SomberNight 5 years ago
parent
commit
d641dfe964
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/keystore.py

2
electrum/keystore.py

@ -411,6 +411,8 @@ class Xpub:
self._root_fingerprint = root_fingerprint
self._derivation_prefix = normalize_bip32_derivation(derivation_prefix)
# note: this helper method exists as derive_pubkey returns hex strings,
# and it saves space to cache bytes instead
@lru_cache(maxsize=None)
def _derive_pubkey_bytes(self, for_change: int, n: int) -> bytes:
assert for_change in (0, 1)

Loading…
Cancel
Save