| 890 | } |
| 891 | |
| 892 | static bool plugin_opt_deprecated_out_ok(struct plugin_opt *popt) |
| 893 | { |
| 894 | return lightningd_deprecated_out_ok(popt->plugin->plugins->ld, |
| 895 | popt->plugin->plugins->ld->deprecated_ok, |
| 896 | popt->plugin->shortname, |
| 897 | /* Skip --prefix */ |
| 898 | popt->name + 2, |
| 899 | popt->depr_start, |
| 900 | popt->depr_end); |
| 901 | } |
| 902 | |
| 903 | /* We merely check they're valid: the values stay in configvars */ |
| 904 | static char *plugin_opt_string_check(const char *arg, struct plugin_opt *popt) |
no test coverage detected