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

Function plugins_all_in_state

lightningd/plugin.c:123–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

121}
122
123static bool plugins_all_in_state(const struct plugins *plugins,
124 enum plugin_state state)
125{
126 const struct plugin *p;
127
128 list_for_each(&plugins->plugins, p, list) {
129 if (p->plugin_state != state)
130 return false;
131 }
132 return true;
133}
134
135/* Once they've all replied with their manifests, we can order them. */
136static void check_plugins_manifests(struct plugins *plugins)

Callers 2

check_plugins_inittedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected