Key for instance handshake timestamp observed by a specific node Format: handshake/{instance_id}/{observer_node_id}
(instance_id: &str, observer_node_id: NodeId)
| 288 | /// Key for instance handshake timestamp observed by a specific node |
| 289 | /// Format: handshake/{instance_id}/{observer_node_id} |
| 290 | pub fn handshake(instance_id: &str, observer_node_id: NodeId) -> String { |
| 291 | format!("{HANDSHAKE_PREFIX}{instance_id}/{observer_node_id}") |
| 292 | } |
| 293 | |
| 294 | /// Prefix to iterate all handshake observations for an instance |
| 295 | pub fn handshake_prefix(instance_id: &str) -> String { |
no outgoing calls
no test coverage detected