| 626 | struct multiwithdraw_command *mw); |
| 627 | |
| 628 | static struct command_result * |
| 629 | mw_sign_and_send(struct multiwithdraw_command *mw) |
| 630 | { |
| 631 | struct out_req *req; |
| 632 | |
| 633 | plugin_log(mw->cmd->plugin, LOG_DBG, |
| 634 | "multiwithdraw %"PRIu64": signpsbt.", mw->id); |
| 635 | |
| 636 | req = jsonrpc_request_start(mw->cmd->plugin, mw->cmd, |
| 637 | "signpsbt", |
| 638 | &mw_after_signpsbt, |
| 639 | &mw_forward_error, |
| 640 | mw); |
| 641 | json_add_psbt(req->js, "psbt", mw->psbt); |
| 642 | return send_outreq(mw->cmd->plugin, req); |
| 643 | } |
| 644 | |
| 645 | static struct command_result * |
| 646 | mw_after_signpsbt(struct command *cmd, |
no test coverage detected