| 990 | } |
| 991 | |
| 992 | static struct command_result * |
| 993 | fundchannel_start_done(struct multifundchannel_destination *dest) |
| 994 | { |
| 995 | struct multifundchannel_command *mfc = dest->mfc; |
| 996 | |
| 997 | --mfc->pending; |
| 998 | if (mfc->pending == 0) |
| 999 | return after_channel_start(mfc); |
| 1000 | else |
| 1001 | return command_still_pending(mfc->cmd); |
| 1002 | } |
| 1003 | |
| 1004 | static struct command_result * |
| 1005 | fundchannel_start_ok(struct command *cmd, |
no test coverage detected