We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 390d49c + 7ee90a5 commit 56fba35Copy full SHA for 56fba35
lightning/src/ln/channelmanager.rs
@@ -7426,7 +7426,9 @@ where
7426
/// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
7427
/// [`ChannelManager`].
7428
pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
7429
- provided_init_features(config).to_context()
+ let mut node_features = provided_init_features(config).to_context();
7430
+ node_features.set_keysend_optional();
7431
+ node_features
7432
}
7433
7434
/// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
0 commit comments