From 4c1997fdc989fc12c0fb50f690558fccab8e0cd1 Mon Sep 17 00:00:00 2001 From: Cody Gunton Date: Tue, 25 Jun 2024 13:05:34 -0400 Subject: [PATCH] feat: Full test skips public simulation (#7186) The e2e prover test skips public simulation. Change suggested by @sirasistant --- yarn-project/end-to-end/src/e2e_prover/full.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yarn-project/end-to-end/src/e2e_prover/full.test.ts b/yarn-project/end-to-end/src/e2e_prover/full.test.ts index bbc1c8b7404..485c6d3d847 100644 --- a/yarn-project/end-to-end/src/e2e_prover/full.test.ts +++ b/yarn-project/end-to-end/src/e2e_prover/full.test.ts @@ -60,8 +60,8 @@ describe('full_prover', () => { logger.info(`Verifying private kernel tail proof`); await expect(t.circuitProofVerifier?.verifyProof(privateTx)).resolves.not.toThrow(); - const sentPrivateTx = privateInteraction.send(); - const sentPublicTx = publicInteraction.send(); + const sentPrivateTx = privateInteraction.send({ skipPublicSimulation: true }); + const sentPublicTx = publicInteraction.send({ skipPublicSimulation: true }); await Promise.all([ sentPrivateTx.wait({ timeout: 1200, interval: 10 }), sentPublicTx.wait({ timeout: 1200, interval: 10 }),