| 1527 | } |
| 1528 | |
| 1529 | static struct command_result * |
| 1530 | connect_done(struct multifundchannel_destination *dest) |
| 1531 | { |
| 1532 | struct multifundchannel_command *mfc = dest->mfc; |
| 1533 | |
| 1534 | --mfc->pending; |
| 1535 | if (mfc->pending == 0) |
| 1536 | return after_multiconnect(mfc); |
| 1537 | else |
| 1538 | return command_still_pending(mfc->cmd); |
| 1539 | } |
| 1540 | |
| 1541 | |
| 1542 | static struct command_result * |
no test coverage detected