rpcserver: use SetBit helper for setting Bolt11 blinded bit

This commit uses the new SetBit helper for setting the Bolt11 route
blinding required bit in a generated invoice. This helper will take care
of setting the dependent bits of the feature bit (namely the route
blinding and TLV feature bits and will use the required variant of
both).
This commit is contained in:
Elle Mouton 2024-09-30 10:32:25 +02:00
parent 49a87469db
commit 4d44d11ece
No known key found for this signature in database
GPG Key ID: D7D916376026F177
2 changed files with 7 additions and 2 deletions

View File

@ -27,6 +27,10 @@
cause a nil pointer dereference during the probing of a payment request that
does not contain a payment address.
* [Use the required route blinding
feature-bit](https://github.com/lightningnetwork/lnd/pull/9143) for invoices
containing blinded paths.
# New Features
## Functional Enhancements
## RPC Additions

View File

@ -6055,8 +6055,9 @@ func (r *rpcServer) AddInvoice(ctx context.Context,
// understand the new BOLT 11 tagged field
// containing the blinded path, so we switch
// the bit to required.
v.Unset(lnwire.Bolt11BlindedPathsOptional)
v.Set(lnwire.Bolt11BlindedPathsRequired)
v = feature.SetBit(
v, lnwire.Bolt11BlindedPathsRequired,
)
}
return v