This commit is contained in:
John Smith 2023-03-11 12:35:24 -05:00
parent e52b5f60cd
commit f298650ffa

View File

@ -115,9 +115,11 @@ impl RouteSetSpecDetail {
} }
} }
pub fn contains_nodes(&self, nodes: &[TypedKey]) -> bool { pub fn contains_nodes(&self, nodes: &[TypedKey]) -> bool {
for h in &self.hop_node_refs { for tk in nodes {
if h.node_ids().contains_any(nodes) { for (_pk, rsd) in &self.route_set {
return true; if rsd.crypto_kind == tk.kind && rsd.hops.contains(&tk.value) {
return true;
}
} }
} }
false false