From 65a991999d31fab43270b92d1f226adb587b999e Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Wed, 2 Oct 2019 03:33:22 -0700 Subject: [PATCH] lnwire/features: static_remote_key bits, 10/11 -> 12/13 Final version of spec allocated 12/13 to option_static_remote_key. --- lnwire/features.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lnwire/features.go b/lnwire/features.go index c6e24998..9a34a637 100644 --- a/lnwire/features.go +++ b/lnwire/features.go @@ -58,12 +58,12 @@ const ( // StaticRemoteKeyRequired is a required feature bit that signals that // within one's commitment transaction, the key used for the remote // party's non-delay output should not be tweaked. - StaticRemoteKeyRequired FeatureBit = 10 + StaticRemoteKeyRequired FeatureBit = 12 // StaticRemoteKeyOptional is an optional feature bit that signals that // within one's commitment transaction, the key used for the remote // party's non-delay output should not be tweaked. - StaticRemoteKeyOptional FeatureBit = 11 + StaticRemoteKeyOptional FeatureBit = 13 // maxAllowedSize is a maximum allowed size of feature vector. //