| 660 | } |
| 661 | |
| 662 | static struct command_result * |
| 663 | openchannel_update_returned(struct multifundchannel_destination *dest) |
| 664 | { |
| 665 | struct multifundchannel_command *mfc = dest->mfc; |
| 666 | |
| 667 | --mfc->pending; |
| 668 | if (mfc->pending == 0) |
| 669 | return perform_openchannel_update(mfc); |
| 670 | else |
| 671 | return command_still_pending(mfc->cmd); |
| 672 | } |
| 673 | |
| 674 | static struct command_result * |
| 675 | openchannel_update_ok(struct command *cmd, |
no test coverage detected