| 359 | } |
| 360 | |
| 361 | static struct command_result * |
| 362 | after_openchannel_signed(struct multifundchannel_command *mfc) |
| 363 | { |
| 364 | --mfc->pending; |
| 365 | if (mfc->pending == 0) |
| 366 | return openchannel_finished(mfc); |
| 367 | else |
| 368 | return command_still_pending(mfc->cmd); |
| 369 | } |
| 370 | |
| 371 | static struct command_result * |
| 372 | openchannel_signed_ok(struct command *cmd, |
no test coverage detected