lnwire: define feature bits for wumbo channels

This commit is contained in:
Olaoluwa Osuntokun 2020-07-01 21:02:25 -07:00
parent 8cb1276dbf
commit 1b8fd008c4
No known key found for this signature in database
GPG Key ID: BC13F65E2DC84465

@ -101,6 +101,14 @@ const (
// HTLC. // HTLC.
MPPOptional FeatureBit = 17 MPPOptional FeatureBit = 17
// WumboChannelsRequired is a required feature bit that signals that a
// node is willing to accept channels larger than 2^24 satoshis.
WumboChannelsRequired = 18
// WumboChannelsRequired is an optional feature bit that signals that a
// node is willing to accept channels larger than 2^24 satoshis.
WumboChannelsOptional = 19
// AnchorsRequired is a required feature bit that signals that the node // AnchorsRequired is a required feature bit that signals that the node
// requires channels to be made using commitments having anchor // requires channels to be made using commitments having anchor
// outputs. // outputs.
@ -150,6 +158,8 @@ var Features = map[FeatureBit]string{
MPPRequired: "multi-path-payments", MPPRequired: "multi-path-payments",
AnchorsRequired: "anchor-commitments", AnchorsRequired: "anchor-commitments",
AnchorsOptional: "anchor-commitments", AnchorsOptional: "anchor-commitments",
WumboChannelsRequired: "wumbo-channels",
WumboChannelsOptional: "wumbo-channels",
} }
// RawFeatureVector represents a set of feature bits as defined in BOLT-09. A // RawFeatureVector represents a set of feature bits as defined in BOLT-09. A