| 262 | return send_outreq(mw->cmd->plugin, req); |
| 263 | } |
| 264 | static struct command_result * |
| 265 | mw_after_cleanup(struct command *cmd UNUSED, |
| 266 | const char *buf UNUSED, |
| 267 | const jsmntok_t *result UNUSED, |
| 268 | struct multiwithdraw_cleanup *cleanup) |
| 269 | { |
| 270 | struct multiwithdraw_command *mw = cleanup->mw; |
| 271 | |
| 272 | plugin_log(mw->cmd->plugin, LOG_DBG, |
| 273 | "multiwithdraw %"PRIu64": cleanup, unreserveinputs done.", |
| 274 | mw->id); |
| 275 | |
| 276 | return command_err_raw(mw->cmd, cleanup->error_json); |
| 277 | } |
| 278 | |
| 279 | /* Use this instead of forward_error. */ |
| 280 | static struct command_result * |
nothing calls this directly
no test coverage detected