| 370 | } |
| 371 | |
| 372 | static struct command_result * |
| 373 | after_openchannel_signed(struct multifundchannel_command *mfc) |
| 374 | { |
| 375 | --mfc->pending; |
| 376 | if (mfc->pending == 0) |
| 377 | return openchannel_finished(mfc); |
| 378 | else |
| 379 | return command_still_pending(mfc->cmd); |
| 380 | } |
| 381 | |
| 382 | static struct command_result * |
| 383 | openchannel_signed_ok(struct command *cmd, |
no test coverage detected