Skip to content

Commit

Permalink
fix: generate solvency verifier contract
Browse files Browse the repository at this point in the history
  • Loading branch information
sifnoc committed Oct 31, 2023
1 parent 897027a commit d8ef0cb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion zk_prover/examples/gen_solvency_verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ fn main() {
let circuit = SolvencyCircuit::<N_ASSETS, N_BYTES>::init_empty();

// generate a universal trusted setup for testing, along with the verification key (vk) and the proving key (pk).
let (params, pk, _) = generate_setup_artifacts(10, None, circuit.clone()).unwrap();
let (params, pk, _) =
generate_setup_artifacts(10, Some("../backend/ptau/hermez-raw-11"), circuit.clone())
.unwrap();

let num_instances = circuit.num_instance();

Expand Down

0 comments on commit d8ef0cb

Please sign in to comment.