Skip to content

Commit 8158a29

Browse files
Roasbeefguggero
authored andcommitted
lnwire: add new taproot chans overlay feature bit
1 parent b812484 commit 8158a29

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

lnwire/features.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,14 @@ const (
273273
// a BOLT 11 invoice.
274274
Bolt11BlindedPathsOptional = 263
275275

276+
// SimpleTaprootOverlayChansRequired is a required bit that indicates
277+
// support for the special custom taproot overlay channel.
278+
SimpleTaprootOverlayChansOptional = 2025
279+
280+
// SimpleTaprootOverlayChansRequired is a required bit that indicates
281+
// support for the special custom taproot overlay channel.
282+
SimpleTaprootOverlayChansRequired = 2026
283+
276284
// MaxBolt11Feature is the maximum feature bit value allowed in bolt 11
277285
// invoices.
278286
//
@@ -339,6 +347,8 @@ var Features = map[FeatureBit]string{
339347
SimpleTaprootChannelsOptionalFinal: "simple-taproot-chans",
340348
SimpleTaprootChannelsRequiredStaging: "simple-taproot-chans-x",
341349
SimpleTaprootChannelsOptionalStaging: "simple-taproot-chans-x",
350+
SimpleTaprootOverlayChansOptional: "taproot-overlay-chans",
351+
SimpleTaprootOverlayChansRequired: "taproot-overlay-chans",
342352
Bolt11BlindedPathsOptional: "bolt-11-blinded-paths",
343353
Bolt11BlindedPathsRequired: "bolt-11-blinded-paths",
344354
}

0 commit comments

Comments
 (0)