Set the previous attestation hash (for session resume chaining).
(mut self, hash: Hash)
| 628 | |
| 629 | /// Set the previous attestation hash (for session resume chaining). |
| 630 | pub fn previous_attestation(mut self, hash: Hash) -> Self { |
| 631 | self.previous_attestation = Some(hash); |
| 632 | self |
| 633 | } |
| 634 | |
| 635 | /// Set optional notes. |
| 636 | pub fn notes(mut self, notes: impl Into<String>) -> Self { |
no outgoing calls
no test coverage detected