| 1848 | }; |
| 1849 | |
| 1850 | static 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 | |
| 1859 | static struct table_desc *new_table_desc(const tal_t *ctx, |
| 1860 | tablemap *tablemap, |
no test coverage detected