| 106 | } |
| 107 | |
| 108 | size_t txid_hash(const struct bitcoin_txid *txid) |
| 109 | { |
| 110 | return siphash24(siphash_seed(), |
| 111 | txid->shad.sha.u.u8, sizeof(txid->shad.sha.u.u8)); |
| 112 | } |
| 113 | |
| 114 | bool txwatch_eq(const struct txwatch *w, const struct bitcoin_txid *txid) |
| 115 | { |
nothing calls this directly
no test coverage detected