| 712 | |
| 713 | |
| 714 | static struct command_result * |
| 715 | fundchannel_complete_done(struct multifundchannel_destination *dest) |
| 716 | { |
| 717 | struct multifundchannel_command *mfc = dest->mfc; |
| 718 | |
| 719 | --mfc->pending; |
| 720 | if (mfc->pending == 0) |
| 721 | return after_fundchannel_complete(mfc); |
| 722 | else |
| 723 | return command_still_pending(mfc->cmd); |
| 724 | } |
| 725 | |
| 726 | static struct command_result * |
| 727 | fundchannel_complete_ok(struct command *cmd, |
no test coverage detected