Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Trivo25 committed Aug 26, 2024
1 parent fec008a commit 9b2951c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/examples/zkprogram/program-no-proving.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@ let MyProgram = ZkProgram({
});

console.log('program digest', await MyProgram.digest());
let cs = await MyProgram.analyzeMethods();
console.log(cs);

// disable proving for iterating quicker
const proofsEnabled = false;

let { verificationKey } = await MyProgram.compile({
proofsEnabled: false,
proofsEnabled,
});

console.log('proving base case...');
Expand Down

0 comments on commit 9b2951c

Please sign in to comment.