| 1992 | } |
| 1993 | |
| 1994 | struct command_result *WARN_UNUSED_RESULT |
| 1995 | command_hook_success(struct command *cmd) |
| 1996 | { |
| 1997 | struct json_stream *response = jsonrpc_stream_success(cmd); |
| 1998 | json_add_string(response, "result", "continue"); |
| 1999 | return command_finished(cmd, response); |
| 2000 | } |
| 2001 | |
| 2002 | struct command_result *WARN_UNUSED_RESULT |
| 2003 | notification_handled(struct command *cmd) |
no test coverage detected