(&self, node_id: NodeId)
| 234 | /// The external hash if found, None if the node ID is ROOT or not found. |
| 235 | #[must_use] |
| 236 | pub fn get_external(&self, node_id: NodeId) -> Option<Hash> { |
| 237 | if node_id == NodeId::ROOT { |
| 238 | return None; |
| 239 | } |
| 240 | self.txn.get_external(node_id).ok().flatten() |
| 241 | } |
| 242 | |
| 243 | /// Clear the caches. |
| 244 | /// |
no outgoing calls