| 607 | } |
| 608 | |
| 609 | bool command_deprecated_out_ok(struct command *cmd, |
| 610 | const char *fieldname, |
| 611 | const char *depr_start, |
| 612 | const char *depr_end) |
| 613 | { |
| 614 | return lightningd_deprecated_out_ok(cmd->ld, |
| 615 | command_deprecated_ok_flag(cmd), |
| 616 | cmd->json_cmd->name, |
| 617 | fieldname, |
| 618 | depr_start, depr_end); |
| 619 | } |
| 620 | |
| 621 | struct command_result *command_still_pending(struct command *cmd) |
| 622 | { |
no test coverage detected