MCPcopy Create free account
hub / github.com/ElementsProject/lightning / list_features_and_exit

Function list_features_and_exit

lightningd/options.c:907–916  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

905}
906
907static char *list_features_and_exit(struct lightningd *ld)
908{
909 const char **features = list_supported_features(tmpctx, ld->our_features);
910 for (size_t i = 0; i < tal_count(features); i++)
911 printf("%s\n", features[i]);
912#if EXPERIMENTAL_FEATURES
913 printf("supports_open_accept_channel_type\n");
914#endif
915 exit(0);
916}
917
918static char *opt_lightningd_usage(struct lightningd *ld)
919{

Callers

nothing calls this directly

Calls 1

list_supported_featuresFunction · 0.85

Tested by

no test coverage detected