From 6e5abc049b3334f916f1fddfb6f85c2033204c3f Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 21 Feb 2020 15:33:15 +0100 Subject: [PATCH] follow-up previous commit (backward compatibility) --- electrum/lnutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/lnutil.py b/electrum/lnutil.py index e9056f78d..8aea237d2 100644 --- a/electrum/lnutil.py +++ b/electrum/lnutil.py @@ -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)