| 49 | }; |
| 50 | |
| 51 | static 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 | |
| 62 | static const char *field_diff_(struct plugin *plugin, |
| 63 | const tal_t *a, const tal_t *b, |
no outgoing calls
no test coverage detected