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

Function chan_iter

common/gossmap.c:1579–1586  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1577}
1578
1579static struct gossmap_chan *chan_iter(const struct gossmap *map, size_t start)
1580{
1581 for (size_t i = start; i < map->num_chan_arr; i++) {
1582 if (map->chan_arr[i].plus_scid_off != 0)
1583 return &map->chan_arr[i];
1584 }
1585 return NULL;
1586}
1587
1588struct gossmap_chan *gossmap_first_chan(const struct gossmap *map)
1589{

Callers 2

gossmap_first_chanFunction · 0.85
gossmap_next_chanFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected