| 73 | } |
| 74 | |
| 75 | static struct command_result * |
| 76 | unreserve_done(struct command *aux_cmd, |
| 77 | const char *method, |
| 78 | const char *buf, |
| 79 | const jsmntok_t *result, |
| 80 | struct pending_open *open) |
| 81 | { |
| 82 | plugin_log(open->p, LOG_DBG, |
| 83 | "`unreserveinputs` for channel %s completed. %.*s", |
| 84 | fmt_channel_id(tmpctx, &open->channel_id), |
| 85 | json_tok_full_len(result), |
| 86 | json_tok_full(buf, result)); |
| 87 | |
| 88 | return aux_command_done(aux_cmd); |
| 89 | } |
| 90 | |
| 91 | /* Frees open (eventually, in unreserve_done callback) */ |
| 92 | static struct command_result *unreserve_psbt(struct command *cmd, |
nothing calls this directly
no test coverage detected