| 751 | } |
| 752 | |
| 753 | struct json_stream *json_stream_fail(struct command *cmd, |
| 754 | enum jsonrpc_errcode code, |
| 755 | const char *errmsg) |
| 756 | { |
| 757 | struct json_stream *r = json_stream_fail_nodata(cmd, code, errmsg); |
| 758 | |
| 759 | json_object_start(r, "data"); |
| 760 | return r; |
| 761 | } |
| 762 | |
| 763 | static struct command_result *command_exec(struct json_connection *jcon, |
| 764 | struct command *cmd, |
no test coverage detected