| 893 | } |
| 894 | |
| 895 | static struct command_result * |
| 896 | openchannel_init_done(struct multifundchannel_destination *dest) |
| 897 | { |
| 898 | struct multifundchannel_command *mfc = dest->mfc; |
| 899 | |
| 900 | --mfc->pending; |
| 901 | if (mfc->pending == 0) |
| 902 | return after_channel_start(mfc); |
| 903 | else |
| 904 | return command_still_pending(mfc->cmd); |
| 905 | } |
| 906 | |
| 907 | static struct command_result * |
| 908 | openchannel_init_ok(struct command *cmd, |
no test coverage detected