MCPcopy Create free account
hub / github.com/ElementsProject/lightning / find_channel_pending_open

Function find_channel_pending_open

plugins/funder.c:42–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40};
41
42static struct pending_open *
43find_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
53static struct pending_open *
54new_channel_open(const tal_t *ctx,

Callers 3

new_channel_openFunction · 0.85
json_channel_open_failedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected