mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-07-01 19:10:59 +02:00
lnwire: add new taproot chans overlay feature bit
This commit is contained in:
@ -273,6 +273,14 @@ const (
|
|||||||
// a BOLT 11 invoice.
|
// a BOLT 11 invoice.
|
||||||
Bolt11BlindedPathsOptional = 263
|
Bolt11BlindedPathsOptional = 263
|
||||||
|
|
||||||
|
// SimpleTaprootOverlayChansRequired is a required bit that indicates
|
||||||
|
// support for the special custom taproot overlay channel.
|
||||||
|
SimpleTaprootOverlayChansOptional = 2025
|
||||||
|
|
||||||
|
// SimpleTaprootOverlayChansRequired is a required bit that indicates
|
||||||
|
// support for the special custom taproot overlay channel.
|
||||||
|
SimpleTaprootOverlayChansRequired = 2026
|
||||||
|
|
||||||
// MaxBolt11Feature is the maximum feature bit value allowed in bolt 11
|
// MaxBolt11Feature is the maximum feature bit value allowed in bolt 11
|
||||||
// invoices.
|
// invoices.
|
||||||
//
|
//
|
||||||
@ -339,6 +347,8 @@ var Features = map[FeatureBit]string{
|
|||||||
SimpleTaprootChannelsOptionalFinal: "simple-taproot-chans",
|
SimpleTaprootChannelsOptionalFinal: "simple-taproot-chans",
|
||||||
SimpleTaprootChannelsRequiredStaging: "simple-taproot-chans-x",
|
SimpleTaprootChannelsRequiredStaging: "simple-taproot-chans-x",
|
||||||
SimpleTaprootChannelsOptionalStaging: "simple-taproot-chans-x",
|
SimpleTaprootChannelsOptionalStaging: "simple-taproot-chans-x",
|
||||||
|
SimpleTaprootOverlayChansOptional: "taproot-overlay-chans",
|
||||||
|
SimpleTaprootOverlayChansRequired: "taproot-overlay-chans",
|
||||||
Bolt11BlindedPathsOptional: "bolt-11-blinded-paths",
|
Bolt11BlindedPathsOptional: "bolt-11-blinded-paths",
|
||||||
Bolt11BlindedPathsRequired: "bolt-11-blinded-paths",
|
Bolt11BlindedPathsRequired: "bolt-11-blinded-paths",
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user