Skip to content

Commit

Permalink
fix integration
Browse files Browse the repository at this point in the history
  • Loading branch information
fbielejec committed Nov 29, 2024
1 parent 2db02f6 commit d1d35e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions crates/integration-tests/src/proving_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ use rstest::fixture;
use shielder_circuits::{
circuits::{Params, ProvingKey, VerifyingKey},
consts::RANGE_PROOF_CHUNK_SIZE,
deposit::circuit::DepositCircuit,
deposit::DepositCircuit,
generate_keys_with_min_k, generate_proof,
new_account::circuit::NewAccountCircuit,
new_account::NewAccountCircuit,
verify,
withdraw::circuit::WithdrawCircuit,
withdraw::WithdrawCircuit,
ProverKnowledge, F, MAX_K,
};
use shielder_rust_sdk::{
Expand Down
4 changes: 2 additions & 2 deletions crates/integration-tests/src/verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ use evm_utils::EvmRunner;
use halo2_proofs::halo2curves::bn256::Fr;
use halo2_solidity_verifier::verifier_contract;
use shielder_circuits::{
consts::RANGE_PROOF_CHUNK_SIZE, deposit::circuit::DepositProverKnowledge,
new_account::circuit::NewAccountProverKnowledge, withdraw::circuit::WithdrawProverKnowledge, F,
consts::RANGE_PROOF_CHUNK_SIZE, deposit::DepositProverKnowledge,
new_account::NewAccountProverKnowledge, withdraw::WithdrawProverKnowledge, F,
};

use crate::{deploy_contract, proving_utils};
Expand Down

0 comments on commit d1d35e1

Please sign in to comment.