| 1211 | } |
| 1212 | |
| 1213 | static struct command_result * |
| 1214 | acquire_change_address(struct multifundchannel_command *mfc) |
| 1215 | { |
| 1216 | struct out_req *req; |
| 1217 | req = jsonrpc_request_start(mfc->cmd->plugin, mfc->cmd, |
| 1218 | "newaddr", |
| 1219 | &after_newaddr, &mfc_forward_error, |
| 1220 | mfc); |
| 1221 | json_add_string(req->js, "addresstype", "bech32"); |
| 1222 | return send_outreq(mfc->cmd->plugin, req); |
| 1223 | } |
| 1224 | |
| 1225 | static struct command_result * |
| 1226 | handle_mfc_change(struct multifundchannel_command *mfc) |
no test coverage detected