| 391 | return mfc_cleanup(mfc, &mfc_err_raw_complete, obj); |
| 392 | } |
| 393 | struct command_result * |
| 394 | mfc_forward_error(struct command *cmd, |
| 395 | const char *buf, const jsmntok_t *error, |
| 396 | struct multifundchannel_command *mfc) |
| 397 | { |
| 398 | plugin_log(cmd->plugin, LOG_DBG, |
| 399 | "mfc %"PRIu64": forwarding error, about to cleanup.", |
| 400 | mfc->id); |
| 401 | return mfc_err_raw(mfc, json_strdup(tmpctx, buf, error)); |
| 402 | } |
| 403 | |
| 404 | struct mfc_finished_object { |
| 405 | struct multifundchannel_command *mfc; |
nothing calls this directly
no test coverage detected