(&self)
| 53 | |
| 54 | impl MessageBytes { |
| 55 | pub fn blake3_compute_script(&self) -> &'static ScriptBuf { |
| 56 | let index = match self { |
| 57 | Self::U64(..) => 0, |
| 58 | Self::U128(..) => 1, |
| 59 | Self::U192(..) => 2, |
| 60 | Self::U448(..) => 3, |
| 61 | }; |
| 62 | &BLAKE3_COMPUTE_SCRIPTS[index] |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | fuzz_target!(|message: MessageBytes| { |
nothing calls this directly
no outgoing calls
no test coverage detected