Pin cache key and source id hashing to u64 fx state

This commit is contained in:
Dennis Kobert
2026-07-31 10:18:00 +00:00
parent d9c8532e71
commit a1c014db2c
3 changed files with 112 additions and 2 deletions

View File

@@ -981,7 +981,7 @@ impl NodeNetwork {
}
fn source_id_for_path(path: &[NodeId]) -> u64 {
let mut hasher = DefaultHasher::new();
let mut hasher = graphene_hash::FxHasher64::new();
path.hash(&mut hasher);
hasher.finish()
}