| 2652 | } |
| 2653 | |
| 2654 | struct command_result *WARN_UNUSED_RESULT |
| 2655 | command_hook_success(struct command *cmd) |
| 2656 | { |
| 2657 | struct json_stream *response = jsonrpc_stream_success(cmd); |
| 2658 | assert(cmd->type == COMMAND_TYPE_HOOK); |
| 2659 | json_add_string(response, "result", "continue"); |
| 2660 | return command_finished(cmd, response); |
| 2661 | } |
| 2662 | |
| 2663 | struct command *aux_command(const struct command *cmd) |
| 2664 | { |
no test coverage detected