| 123 | } |
| 124 | |
| 125 | static struct command_result * |
| 126 | command_hook_cont_psbt(struct command *cmd, struct wally_psbt *psbt) |
| 127 | { |
| 128 | struct json_stream *response; |
| 129 | |
| 130 | response = jsonrpc_stream_success(cmd); |
| 131 | json_add_string(response, "result", "continue"); |
| 132 | json_add_psbt(response, "psbt", psbt); |
| 133 | return command_finished(cmd, response); |
| 134 | } |
| 135 | |
| 136 | static struct command_result * |
| 137 | signpsbt_done(struct command *cmd, |
no test coverage detected