summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/merkle.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/merkle.rs b/src/merkle.rs
index a93d314..4bb4abd 100644
--- a/src/merkle.rs
+++ b/src/merkle.rs
@@ -151,7 +151,7 @@ mod test {
for i in 0..num {
println!("Testing {:?} {:?}", num, i);
- let paths: Vec<u8> = merkle.get_paths(i).into_iter().flat_map(|x| x).collect();
+ let paths: Vec<u8> = merkle.get_paths(i);
let computed_root = root_from_paths(i, &[i as u8], &paths);
assert_eq!(root, computed_root);