| 1050 | } |
| 1051 | |
| 1052 | static struct command_result *sendpsbt_done(struct command *aux_cmd, |
| 1053 | const char *methodname, |
| 1054 | const char *buf, |
| 1055 | const jsmntok_t *result, |
| 1056 | struct channel_id *cid) |
| 1057 | { |
| 1058 | plugin_log(aux_cmd->plugin, LOG_INFORM, |
| 1059 | "Signed and sent psbt for waiting channel %s", |
| 1060 | fmt_channel_id(tmpctx, cid)); |
| 1061 | return aux_command_done(aux_cmd); |
| 1062 | } |
| 1063 | |
| 1064 | static struct command_result *signpsbt_done(struct command *aux_cmd, |
| 1065 | const char *methodname, |
nothing calls this directly
no test coverage detected