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