follow-up previous commit (backward compatibility)

This commit is contained in:
ThomasV 2020-02-21 15:33:15 +01:00
parent 55e0e1a72e
commit 6e5abc049b

View file

@ -792,7 +792,7 @@ class LnKeyFamily(IntEnum):
def generate_keypair(node: BIP32Node, key_family: LnKeyFamily) -> Keypair:
node2 = node.subkey_at_private_derivation([key_family])
node2 = node.subkey_at_private_derivation([key_family, 0, 0])
k = node2.eckey.get_secret_bytes()
cK = ecc.ECPrivkey(k).get_public_key_bytes()
return Keypair(cK, k)