| 594 | } |
| 595 | |
| 596 | bool command_deprecated_in_ok(struct command *cmd, |
| 597 | const char *param, |
| 598 | const char *depr_start, |
| 599 | const char *depr_end) |
| 600 | { |
| 601 | return lightningd_deprecated_in_ok(cmd->ld, |
| 602 | command_logger(cmd), |
| 603 | command_deprecated_ok_flag(cmd), |
| 604 | cmd->json_cmd->name, param, |
| 605 | depr_start, depr_end, |
| 606 | cmd->id); |
| 607 | } |
| 608 | |
| 609 | bool command_deprecated_out_ok(struct command *cmd, |
| 610 | const char *fieldname, |
no test coverage detected