Skip to content

Commit

Permalink
Add expectation on verifyProof output
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Jul 23, 2024
1 parent 7482937 commit 4a0da07
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions yarn-project/end-to-end/src/benchmarks/bench_prover.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,15 +208,13 @@ describe('benchmarks/proving', () => {
const verifier = await BBCircuitVerifier.new((await getBBConfig(ctx.logger))!);
for (let i = 0; i < txVerifyIterations; i++) {
for (const tx of provenTxs) {
await verifier.verifyProof(tx);
expect(await verifier.verifyProof(tx)).toBe(true);
}
}

ctx.logger.info('Sending transactions');
const txs = [
fnCalls[0].send({
fee: feeFnCall0,
}),
fnCalls[0].send({ fee: feeFnCall0 }),
fnCalls[1].send(),
// fnCalls[2].send(),
// fnCalls[3].send(),
Expand Down

0 comments on commit 4a0da07

Please sign in to comment.