| 651 | } |
| 652 | |
| 653 | static struct command_result * |
| 654 | openchannel_update_returned(struct multifundchannel_destination *dest) |
| 655 | { |
| 656 | struct multifundchannel_command *mfc = dest->mfc; |
| 657 | |
| 658 | --mfc->pending; |
| 659 | if (mfc->pending == 0) |
| 660 | return perform_openchannel_update(mfc); |
| 661 | else |
| 662 | return command_still_pending(mfc->cmd); |
| 663 | } |
| 664 | |
| 665 | static struct command_result * |
| 666 | openchannel_update_ok(struct command *cmd, |
no test coverage detected