Verify an attested Memory node — thin wrapper over [`verify_value`].
(node: &MemoryNode, public_key: &PublicKey)
| 181 | |
| 182 | /// Verify an attested Memory node — thin wrapper over [`verify_value`]. |
| 183 | pub fn verify_memory(node: &MemoryNode, public_key: &PublicKey) -> Result<()> { |
| 184 | verify_value(&node.to_value(), public_key) |
| 185 | } |
| 186 | |
| 187 | fn encode_proof_value(signature: &Signature) -> String { |
| 188 | let mut s = String::new(); |
nothing calls this directly
no test coverage detected