Knocking down cache validation time

This commit is contained in:
Dave Hrycyszyn
2021-12-20 14:08:49 +00:00
parent effb756e2f
commit 72944905cd
+1 -1
View File
@@ -171,7 +171,7 @@ impl ThreadsafeMixNodesResult {
.into_iter()
.map(|bond| (bond.mix_node.identity_key.to_string(), bond))
.collect(),
valid_until: SystemTime::now() + Duration::from_secs(60 * 10), // valid for 10 minutes
valid_until: SystemTime::now() + Duration::from_secs(30),
location_cache,
};
}