Skip to content

Commit

Permalink
test: verifier : update MerkleTreeInfo to H32 in verifier inclusion test
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeytimoshin committed Jan 10, 2025
1 parent 4521eab commit e3b81e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions program-libs/verifier/tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ mod test {
.await;
let client = Client::new();
for number_of_compressed_accounts in &[1usize, 2, 3] {
let big_int_inputs = inclusion_merkle_tree_inputs(MerkleTreeInfo::H26);
let big_int_inputs = inclusion_merkle_tree_inputs(MerkleTreeInfo::H32);

let inputs = inclusion_inputs_string(*number_of_compressed_accounts);
let response_result = client
.post(&format!("{}{}", SERVER_ADDRESS, PROVE_PATH))
.post(format!("{}{}", SERVER_ADDRESS, PROVE_PATH))
.header("Content-Type", "text/plain; charset=utf-8")
.body(inputs)
.send()
Expand Down

0 comments on commit e3b81e0

Please sign in to comment.