Skip to content

Commit

Permalink
fixing data size to 50k
Browse files Browse the repository at this point in the history
  • Loading branch information
anupsv committed May 23, 2024
1 parent e0e851d commit 7dc2fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kzg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ fn test_compute_kzg_proof_rand(){
let mut rng = rand::thread_rng();

(0..100).for_each(|_| {
let blob_length = rand::thread_rng().gen_range(0..65000);
let blob_length = rand::thread_rng().gen_range(0..50000);
let random_blob: Vec<u8> = (0..blob_length).map(|_| rng.gen_range(32..=126) as u8).collect();
println!("generating blob of length is {}", blob_length);

Expand Down

0 comments on commit 7dc2fb3

Please sign in to comment.