| 40 | }; |
| 41 | |
| 42 | static struct pending_open * |
| 43 | find_channel_pending_open(const struct channel_id *cid) |
| 44 | { |
| 45 | struct pending_open *open; |
| 46 | list_for_each(&pending_opens, open, list) { |
| 47 | if (channel_id_eq(&open->channel_id, cid)) |
| 48 | return open; |
| 49 | } |
| 50 | return NULL; |
| 51 | } |
| 52 | |
| 53 | static struct pending_open * |
| 54 | new_channel_open(const tal_t *ctx, |
no outgoing calls
no test coverage detected