| 55 | } |
| 56 | |
| 57 | struct htlc_out *find_htlc_out(const struct htlc_out_map *map, |
| 58 | const struct channel *channel, |
| 59 | u64 htlc_id) |
| 60 | { |
| 61 | const struct htlc_key key = { (struct channel *)channel, htlc_id }; |
| 62 | return htlc_out_map_get(map, &key); |
| 63 | } |
| 64 | |
| 65 | static void destroy_htlc_out(struct htlc_out *hend, struct htlc_out_map *map) |
| 66 | { |
no outgoing calls
no test coverage detected