Check if a specific change is covered by this attestation.
(&self, hash: &Hash)
| 287 | |
| 288 | /// Check if a specific change is covered by this attestation. |
| 289 | pub fn covers_change(&self, hash: &Hash) -> bool { |
| 290 | self.changes_covered.contains(hash) |
| 291 | } |
| 292 | |
| 293 | /// Check if this attestation is part of a chain (has a predecessor). |
| 294 | pub fn is_chained(&self) -> bool { |
no test coverage detected