Skip to content

Commit

Permalink
test other value
Browse files Browse the repository at this point in the history
  • Loading branch information
dragan2234 committed Jan 31, 2024
1 parent 8a28f27 commit 7d7f65d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ffi_interface/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ mod prover_verifier_test {
let _prover_query = ProverQuery {
commitment,
poly,
point: 0,
point: 2,
result: a_0,
};

Expand All @@ -614,9 +614,9 @@ mod prover_verifier_test {
poly_bytes.extend_from_slice(&bytes);
}

let point_bytes = [0u8; 1];
let point_bytes = [2u8; 1];

let result_bytes = fr_to_le_bytes(a_0);
let result_bytes = fr_to_le_bytes(a_2);

let mut create_prover_bytes: Vec<u8> = Vec::new();

Expand Down

0 comments on commit 7d7f65d

Please sign in to comment.