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

Function find_sent_by_alias

plugins/fetchinvoice.c:51–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49};
50
51static struct sent *find_sent_by_alias(const struct pubkey *alias)
52{
53 struct sent *i;
54
55 list_for_each(&sent_list, i, list) {
56 if (i->reply_alias && pubkey_eq(i->reply_alias, alias))
57 return i;
58 }
59 return NULL;
60}
61
62static const char *field_diff_(struct plugin *plugin,
63 const tal_t *a, const tal_t *b,

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected