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

Function find_deferred_update

gossipd/gossip_generation.c:631–641  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

629};
630
631static struct deferred_update *find_deferred_update(struct daemon *daemon,
632 const struct chan *chan)
633{
634 struct deferred_update *du;
635
636 list_for_each(&daemon->deferred_updates, du, list) {
637 if (du->chan == chan)
638 return du;
639 }
640 return NULL;
641}
642
643static void destroy_deferred_update(struct deferred_update *du)
644{

Callers 4

defer_updateFunction · 0.85
local_disable_chanFunction · 0.85
local_enable_chanFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected