| 1581 | } |
| 1582 | |
| 1583 | static struct command_result * |
| 1584 | connect_done(struct multifundchannel_destination *dest) |
| 1585 | { |
| 1586 | struct multifundchannel_command *mfc = dest->mfc; |
| 1587 | |
| 1588 | --mfc->pending; |
| 1589 | if (mfc->pending == 0) |
| 1590 | return after_multiconnect(mfc); |
| 1591 | else |
| 1592 | return command_still_pending(mfc->cmd); |
| 1593 | } |
| 1594 | |
| 1595 | |
| 1596 | static struct command_result * |
no test coverage detected