| 253 | } |
| 254 | |
| 255 | bool notification_deprecated_out_ok(struct plugin *plugin, |
| 256 | const char *method, |
| 257 | const char *fieldname, |
| 258 | const char *depr_start, |
| 259 | const char *depr_end) |
| 260 | { |
| 261 | return deprecated_ok(plugin->deprecated_ok, |
| 262 | tal_fmt(tmpctx, "%s.%s", method, fieldname), |
| 263 | depr_start, depr_end, |
| 264 | plugin->beglist, |
| 265 | NULL, NULL); |
| 266 | } |
| 267 | |
| 268 | static void ld_send(struct plugin *plugin, struct json_stream *stream) |
| 269 | { |
no outgoing calls
no test coverage detected