| 15 | #define OP_PUSHBYTES(val) (val) |
| 16 | |
| 17 | size_t script_with_len_hash(const struct script_with_len *swl) |
| 18 | { |
| 19 | return siphash24(siphash_seed(), swl->script, swl->len); |
| 20 | } |
| 21 | |
| 22 | bool script_with_len_eq(const struct script_with_len *a, |
| 23 | const struct script_with_len *b) |
nothing calls this directly
no test coverage detected