Raw serialized bytes (the Tag4 constant body, no length prefix).
(&self)
| 217 | // Memoized: hash only until the first success. `Relaxed` suffices — |
| 218 | // the flag guards recomputation of a pure function of immutable |
| 219 | // bytes, so a race just means both threads hash once. |
| 220 | if let Some(expected) = &self.pending_addr |
| 221 | && !self.verified.load(Ordering::Relaxed) |
| 222 | { |
| 223 | let computed = Address::hash(self.bytes.as_slice()); |
| 224 | if computed != *expected { |
no test coverage detected