From fdf77ed56d3f96d9b14186721a9ae16d8f321e0d Mon Sep 17 00:00:00 2001 From: Slyghtning Date: Wed, 31 Jan 2024 11:03:41 +0100 Subject: [PATCH] swap: address family for static addresses --- swap/keychain.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/swap/keychain.go b/swap/keychain.go index 8884b39..3710695 100644 --- a/swap/keychain.go +++ b/swap/keychain.go @@ -4,4 +4,8 @@ var ( // KeyFamily is the key family used to generate keys that allow // spending of the htlc. KeyFamily = int32(99) + + // StaticAddressKeyFamily is the key family used to generate static + // address keys. + StaticAddressKeyFamily = int32(42060) )