| 619 | } |
| 620 | |
| 621 | struct json_stream *json_stream_fail(struct command *cmd, |
| 622 | enum jsonrpc_errcode code, |
| 623 | const char *errmsg) |
| 624 | { |
| 625 | struct json_stream *r = json_stream_fail_nodata(cmd, code, errmsg); |
| 626 | |
| 627 | json_object_start(r, "data"); |
| 628 | return r; |
| 629 | } |
| 630 | |
| 631 | static struct command_result *command_exec(struct json_connection *jcon, |
| 632 | struct command *cmd, |
no test coverage detected