| 882 | } |
| 883 | |
| 884 | static struct command_result * |
| 885 | openchannel_init_done(struct multifundchannel_destination *dest) |
| 886 | { |
| 887 | struct multifundchannel_command *mfc = dest->mfc; |
| 888 | |
| 889 | --mfc->pending; |
| 890 | if (mfc->pending == 0) |
| 891 | return after_channel_start(mfc); |
| 892 | else |
| 893 | return command_still_pending(mfc->cmd); |
| 894 | } |
| 895 | |
| 896 | static struct command_result * |
| 897 | openchannel_init_ok(struct command *cmd, |
no test coverage detected