| 241 | } |
| 242 | |
| 243 | bool command_deprecated_out_ok(struct command *cmd, |
| 244 | const char *fieldname, |
| 245 | const char *depr_start, |
| 246 | const char *depr_end) |
| 247 | { |
| 248 | return deprecated_ok(command_deprecated_ok_flag(cmd), |
| 249 | tal_fmt(tmpctx, "%s.%s", cmd->methodname, fieldname), |
| 250 | depr_start, depr_end, |
| 251 | cmd->plugin->beglist, |
| 252 | NULL, NULL); |
| 253 | } |
| 254 | |
| 255 | bool notification_deprecated_out_ok(struct plugin *plugin, |
| 256 | const char *method, |
nothing calls this directly
no test coverage detected