From 724f439b0bd8f2aafdf8d3390c4fc04603534a69 Mon Sep 17 00:00:00 2001 From: "Johan T. Halseth" Date: Fri, 21 Aug 2020 13:38:36 +0200 Subject: [PATCH] lnwire: update anchor bit to spec --- lnwire/features.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lnwire/features.go b/lnwire/features.go index 6cc89946..5584191b 100644 --- a/lnwire/features.go +++ b/lnwire/features.go @@ -112,12 +112,12 @@ const ( // AnchorsRequired is a required feature bit that signals that the node // requires channels to be made using commitments having anchor // outputs. - AnchorsRequired FeatureBit = 1336 + AnchorsRequired FeatureBit = 20 // AnchorsRequired is an optional feature bit that signals that the // node supports channels to be made using commitments having anchor // outputs. - AnchorsOptional FeatureBit = 1337 + AnchorsOptional FeatureBit = 21 // maxAllowedSize is a maximum allowed size of feature vector. //