76
76
//! (see [BOLT PR #1110](https://github.com/lightning/bolts/pull/1110) for more info).
77
77
//! - `Quiescence` - protocol to quiesce a channel by indicating that "SomeThing Fundamental is Underway"
78
78
//! (see [BOLT-2](https://github.com/lightning/bolts/blob/master/02-peer-protocol.md#channel-quiescence) for more information).
79
+ //! - `ZeroFeeCommitments` - A channel type which always uses zero transaction fee on commitment transactions.
80
+ //! (see [BOLT PR #1228](https://github.com/lightning/bolts/pull/1228) for more info).
79
81
//!
80
82
//! LDK knows about the following features, but does not support them:
81
83
//! - `AnchorsNonzeroFeeHtlcTx` - the initial version of anchor outputs, which was later found to be
@@ -156,7 +158,7 @@ mod sealed {
156
158
// Byte 4
157
159
Quiescence | OnionMessages ,
158
160
// Byte 5
159
- ProvideStorage | ChannelType | SCIDPrivacy ,
161
+ ProvideStorage | ChannelType | SCIDPrivacy | AnchorZeroFeeCommitments ,
160
162
// Byte 6
161
163
ZeroConf ,
162
164
// Byte 7
@@ -177,7 +179,7 @@ mod sealed {
177
179
// Byte 4
178
180
Quiescence | OnionMessages ,
179
181
// Byte 5
180
- ProvideStorage | ChannelType | SCIDPrivacy ,
182
+ ProvideStorage | ChannelType | SCIDPrivacy | AnchorZeroFeeCommitments ,
181
183
// Byte 6
182
184
ZeroConf | Keysend ,
183
185
// Byte 7
@@ -242,7 +244,7 @@ mod sealed {
242
244
// Byte 4
243
245
,
244
246
// Byte 5
245
- SCIDPrivacy ,
247
+ SCIDPrivacy | AnchorZeroFeeCommitments ,
246
248
// Byte 6
247
249
ZeroConf ,
248
250
] ) ;
@@ -580,6 +582,17 @@ mod sealed {
580
582
supports_onion_messages,
581
583
requires_onion_messages
582
584
) ;
585
+ define_feature ! (
586
+ 41 ,
587
+ AnchorZeroFeeCommitments ,
588
+ [ InitContext , NodeContext , ChannelTypeContext ] ,
589
+ "Feature flags for `option_zero_fee_commitments`." ,
590
+ set_anchor_zero_fee_commitments_optional,
591
+ set_anchor_zero_fee_commitments_required,
592
+ clear_anchor_zero_fee_commitments,
593
+ supports_anchor_zero_fee_commitments,
594
+ requires_anchor_zero_fee_commitments
595
+ ) ;
583
596
define_feature ! (
584
597
43 ,
585
598
ProvideStorage ,
0 commit comments