summaryrefslogtreecommitdiffstats
path: root/benches/bigfile.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2025-06-18 09:56:10 +0000
committerSanto Cariotti <santo@dcariotti.me>2025-06-18 09:56:10 +0000
commitb1ca877d924b15404be1d51df4bddb571d69a5be (patch)
tree16b8ee6e2629ce8b606dbb00cbdeb9da961b1050 /benches/bigfile.rs
parente74b40cc076c3e1051a89852eeba1f27f38f170c (diff)
benches: fix typo on documentation
Diffstat (limited to 'benches/bigfile.rs')
-rw-r--r--benches/bigfile.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/benches/bigfile.rs b/benches/bigfile.rs
index f87ed9b..bac637a 100644
--- a/benches/bigfile.rs
+++ b/benches/bigfile.rs
@@ -60,8 +60,8 @@ fn test_merkle_tree(files: &Vec<Vec<u8>>) {
}
}
-/// Example of a MarkleTree with 512 nodes which use SHA256 algorithm to make hashes.
-/// Each node has a size of 1024 bytes.
+/// Example of a MarkleTree with 10 nodes which use SHA256 algorithm to make hashes.
+/// Each node has a size of 5, 10 or 15 MB.
/// Also, it verifies each node path with a proofer O(n).
fn bench_large_merkle_tree_sha256(c: &mut Criterion) {
let filenames: Vec<String> = (1..=10).map(|i| format!("file-{i}.dat")).collect();