Skip to content

Commit b526323

Browse files
committed
clippy happy
1 parent 54f6e69 commit b526323

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/lean_prover/tests/test_zkvm.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,14 +127,14 @@ fn test_zk_vm_helper(
127127
let time = std::time::Instant::now();
128128
let (proof_data, _, summary) = prove_execution(
129129
&bytecode,
130-
(&public_input, &private_input),
130+
(public_input, private_input),
131131
whir_config_builder(),
132132
no_vec_runtime_memory,
133133
false,
134134
(&vec![], &vec![]),
135135
);
136136
let proof_time = time.elapsed();
137-
verify_execution(&bytecode, &public_input, proof_data, whir_config_builder()).unwrap();
137+
verify_execution(&bytecode, public_input, proof_data, whir_config_builder()).unwrap();
138138
println!("{}", summary);
139139
println!("Proof time: {:.3} s", proof_time.as_secs_f32());
140140
}

0 commit comments

Comments
 (0)