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

Function find_command_refresh

plugins/sql.c:1850–1857  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1848};
1849
1850static const struct refresh_funcs *find_command_refresh(const char *cmdname)
1851{
1852 for (size_t i = 0; i < ARRAY_SIZE(refresh_funcs); i++) {
1853 if (streq(refresh_funcs[i].cmdname, cmdname))
1854 return &refresh_funcs[i];
1855 }
1856 abort();
1857}
1858
1859static struct table_desc *new_table_desc(const tal_t *ctx,
1860 tablemap *tablemap,

Callers 1

new_table_descFunction · 0.85

Calls 1

abortFunction · 0.85

Tested by

no test coverage detected