mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-31 17:51:33 +02:00
multi: add experimental endorsement feature bit and disable option
This commit is contained in:
@@ -263,6 +263,14 @@ const (
|
||||
// being finalized.
|
||||
SimpleTaprootChannelsOptionalStaging = 181
|
||||
|
||||
// ExperimentalEndorsementRequired is a required feature bit that
|
||||
// indicates that the node will relay experimental endorsement signals.
|
||||
ExperimentalEndorsementRequired FeatureBit = 260
|
||||
|
||||
// ExperimentalEndorsementOptional is an optional feature bit that
|
||||
// indicates that the node will relay experimental endorsement signals.
|
||||
ExperimentalEndorsementOptional FeatureBit = 261
|
||||
|
||||
// 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.
|
||||
@@ -349,6 +357,8 @@ var Features = map[FeatureBit]string{
|
||||
SimpleTaprootChannelsOptionalStaging: "simple-taproot-chans-x",
|
||||
SimpleTaprootOverlayChansOptional: "taproot-overlay-chans",
|
||||
SimpleTaprootOverlayChansRequired: "taproot-overlay-chans",
|
||||
ExperimentalEndorsementRequired: "endorsement-x",
|
||||
ExperimentalEndorsementOptional: "endorsement-x",
|
||||
Bolt11BlindedPathsOptional: "bolt-11-blinded-paths",
|
||||
Bolt11BlindedPathsRequired: "bolt-11-blinded-paths",
|
||||
}
|
||||
|
Reference in New Issue
Block a user