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

Function chan_iter

common/gossmap.c:1090–1097  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1088}
1089
1090static struct gossmap_chan *chan_iter(const struct gossmap *map, size_t start)
1091{
1092 for (size_t i = start; i < map->num_chan_arr; i++) {
1093 if (map->chan_arr[i].plus_scid_off != 0)
1094 return &map->chan_arr[i];
1095 }
1096 return NULL;
1097}
1098
1099struct gossmap_chan *gossmap_first_chan(const struct gossmap *map)
1100{

Callers 2

gossmap_first_chanFunction · 0.85
gossmap_next_chanFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected