mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 06:21:40 +01:00
lnwire: add new taproot chans overlay feature bit
This commit is contained in:
parent
4920bf6e1a
commit
7f9268c38f
1 changed files with 10 additions and 0 deletions
|
@ -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",
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue