mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-27 20:29:39 +02:00
[pitboss/grind] deferred session-0036 (20260517T044708Z-e058)
This commit is contained in:
parent
dc0cff58c7
commit
7dc488fae7
3 changed files with 4 additions and 4 deletions
|
|
@ -625,10 +625,10 @@ mod tests {
|
|||
Feasibility::Confirmed,
|
||||
);
|
||||
let cfg = ChainSearchConfig::default();
|
||||
let first = find_chains(&[e.clone()], &surface, cfg);
|
||||
let first = find_chains(std::slice::from_ref(&e), &surface, cfg);
|
||||
let first_hashes: Vec<u64> = first.iter().map(|c| c.stable_hash).collect();
|
||||
for _ in 0..9 {
|
||||
let again = find_chains(&[e.clone()], &surface, cfg);
|
||||
let again = find_chains(std::slice::from_ref(&e), &surface, cfg);
|
||||
let again_hashes: Vec<u64> = again.iter().map(|c| c.stable_hash).collect();
|
||||
assert_eq!(again_hashes, first_hashes);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue