From f1a58dcab1a805df3785f0aaaf4993b5f44a183a Mon Sep 17 00:00:00 2001 From: Elle Mouton Date: Wed, 7 Aug 2024 20:13:34 +0200 Subject: [PATCH] lnwire: update Bolt11 blinded path feature bits so that they dont clash with the htlc-endorsement feature bits. --- lnwire/features.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lnwire/features.go b/lnwire/features.go index db07197e8..437a50dc2 100644 --- a/lnwire/features.go +++ b/lnwire/features.go @@ -266,12 +266,12 @@ const ( // Bolt11BlindedPathsRequired is a required feature bit that indicates // that the node is able to understand the blinded path tagged field in // a BOLT 11 invoice. - Bolt11BlindedPathsRequired = 260 + Bolt11BlindedPathsRequired = 262 // Bolt11BlindedPathsOptional is an optional feature bit that indicates // that the node is able to understand the blinded path tagged field in // a BOLT 11 invoice. - Bolt11BlindedPathsOptional = 261 + Bolt11BlindedPathsOptional = 263 // MaxBolt11Feature is the maximum feature bit value allowed in bolt 11 // invoices.