Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
Signed-off-by: Kevaundray Wedderburn <[email protected]>
  • Loading branch information
kevaundray committed Jan 31, 2024
1 parent 818d47c commit cf1bff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffi_interface/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ pub fn create_proof_alt(input: Vec<u8>) -> Vec<u8> {
let mut prover_queries: Vec<ProverQuery> = Vec::with_capacity(num_proofs);

for proof_bytes in proofs_bytes {
let prover_query = deserialize_proof_query(&proof_bytes);
let prover_query = deserialize_proof_query(proof_bytes);
prover_queries.push(prover_query);
}

Expand Down

0 comments on commit cf1bff9

Please sign in to comment.