| 39 | } |
| 40 | |
| 41 | static inline size_t hash_payment_hash(const struct sha256 *payment_hash) |
| 42 | { |
| 43 | return siphash24(siphash_seed(), payment_hash, sizeof(&payment_hash)); |
| 44 | } |
| 45 | |
| 46 | static inline bool htlc_set_eq(const struct htlc_set *set, |
| 47 | const struct sha256 *payment_hash) |
nothing calls this directly
no test coverage detected