Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ColoCarletti committed Oct 31, 2024
1 parent b94eb06 commit eb1a569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions provers/stark/src/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1230,7 +1230,7 @@ mod tests {

let claimed_index = 3;
let col = 0;
let claimed_value = trace.get_main(claimed_index, col).clone();
let claimed_value = *trace.get_main(claimed_index, col);
let mut proof_options = ProofOptions::default_test_options();
proof_options.blowup_factor = 4;
proof_options.coset_offset = 3;
Expand Down Expand Up @@ -1627,7 +1627,7 @@ mod tests {

let claimed_index = 420;
let col = 0;
let claimed_value = trace.get_main(claimed_index, col).clone();
let claimed_value = *trace.get_main(claimed_index, col);
let mut proof_options = ProofOptions::default_test_options();
proof_options.blowup_factor = 1 << 6;
proof_options.coset_offset = 3;
Expand Down

0 comments on commit eb1a569

Please sign in to comment.