Skip to content

Commit

Permalink
Merge pull request #28 from lambdaclass/fix_inputs_path
Browse files Browse the repository at this point in the history
Change public input path
  • Loading branch information
xqft authored Oct 4, 2023
2 parents 4afa259 + fd6a157 commit 2c4151f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verifier_circuit/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { exit } from "process";

let inputs: { sg: bigint[], z1: bigint, expected: bigint[] };
try {
inputs = JSON.parse(readFileSync("./test/inputs.json", "utf-8"));
inputs = JSON.parse(readFileSync("./src/inputs.json", "utf-8"));
} catch (e) {
console.log("Using default inputs");
inputs = {
Expand Down

0 comments on commit 2c4151f

Please sign in to comment.