| 1035 | } |
| 1036 | |
| 1037 | static struct command_result *psbt_error(struct command *aux_cmd, |
| 1038 | const char *methodname, |
| 1039 | const char *buf, |
| 1040 | const jsmntok_t *result, |
| 1041 | struct channel_id *cid) |
| 1042 | { |
| 1043 | plugin_log(aux_cmd->plugin, LOG_UNUSUAL, |
| 1044 | "Failed %s for waiting channel %s: %.*s", |
| 1045 | methodname, |
| 1046 | fmt_channel_id(tmpctx, cid), |
| 1047 | json_tok_full_len(result), |
| 1048 | json_tok_full(buf, result)); |
| 1049 | return aux_command_done(aux_cmd); |
| 1050 | } |
| 1051 | |
| 1052 | static struct command_result *sendpsbt_done(struct command *aux_cmd, |
| 1053 | const char *methodname, |
nothing calls this directly
no test coverage detected