Verify an attested Memory node — thin wrapper over [`verify_value`].
(node: &MemoryNode, public_key: &PublicKey)
| 232 | |
| 233 | /// Verify an attested Memory node — thin wrapper over [`verify_value`]. |
| 234 | pub fn verify_memory(node: &MemoryNode, public_key: &PublicKey) -> Result<()> { |
| 235 | verify_value(&node.to_value(), public_key) |
| 236 | } |
| 237 | |
| 238 | fn encode_proof_value(signature: &Signature) -> String { |
| 239 | let mut s = String::new(); |
nothing calls this directly
no test coverage detected