| 1007 | } |
| 1008 | |
| 1009 | static struct command_result * |
| 1010 | fundchannel_start_done(struct multifundchannel_destination *dest) |
| 1011 | { |
| 1012 | struct multifundchannel_command *mfc = dest->mfc; |
| 1013 | |
| 1014 | --mfc->pending; |
| 1015 | if (mfc->pending == 0) |
| 1016 | return after_channel_start(mfc); |
| 1017 | else |
| 1018 | return command_still_pending(mfc->cmd); |
| 1019 | } |
| 1020 | |
| 1021 | struct channel_type *json_bits_to_channel_type(const tal_t *ctx, |
| 1022 | const char *buffer, const jsmntok_t *tok) |
no test coverage detected