| 19 | } |
| 20 | |
| 21 | struct htlc_in *find_htlc_in(const struct htlc_in_map *map, |
| 22 | const struct channel *channel, |
| 23 | u64 htlc_id) |
| 24 | { |
| 25 | const struct htlc_key key = { (struct channel *)channel, htlc_id }; |
| 26 | return htlc_in_map_get(map, &key); |
| 27 | } |
| 28 | |
| 29 | struct htlc_in *remove_htlc_in_by_dbid(struct htlc_in_map *remaining_htlcs_in, |
| 30 | u64 dbid) |
no outgoing calls
no test coverage detected