| 129 | } |
| 130 | |
| 131 | static struct command_result * |
| 132 | command_hook_cont_psbt(struct command *cmd, struct wally_psbt *psbt) |
| 133 | { |
| 134 | struct json_stream *response; |
| 135 | |
| 136 | response = jsonrpc_stream_success(cmd); |
| 137 | json_add_string(response, "result", "continue"); |
| 138 | json_add_psbt(response, "psbt", psbt); |
| 139 | return command_finished(cmd, response); |
| 140 | } |
| 141 | |
| 142 | static struct command_result * |
| 143 | datastore_del_fail(struct command *cmd, |
no test coverage detected