create Script instance from stack-tracker and pad output with zeros to appropriate hash size
()
| 30 | |
| 31 | // create Script instance from stack-tracker and pad output with zeros to appropriate hash size |
| 32 | pub(crate) fn hash_n_bytes<const N: usize>() -> Script { |
| 33 | wrap_scr(blake3_compute_script(N)) |
| 34 | } |
| 35 | |
| 36 | // helpers to directly hash data structures that we work with |
| 37 | // example: extension field elements, point accumulators |
nothing calls this directly
no test coverage detected