Skip to content

Commit 76c0651

Browse files
committed
temp: disable proving
1 parent 96ff7e3 commit 76c0651

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

app/src/embedded-wallet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class EmbeddedWallet {
3434
// Create PXE Service
3535
const config = getPXEServiceConfig();
3636
config.l1Contracts = await aztecNode.getL1ContractAddresses();
37-
// config.proverEnabled = false;
37+
config.proverEnabled = false;
3838
this.pxe = await createPXEService(aztecNode, config);
3939

4040
// Register Sponsored FPC Contract with PXE

app/tests/voting.spec.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ test('create account and cast vote', async ({ page }, testInfo) => {
1616
await expect(createAccountButton).toBeVisible();
1717
await createAccountButton.click();
1818

19-
await expect(createAccountButton).toBeHidden({ timeout: proofTimeout });
20-
await expect(accountDisplay).toBeVisible();
19+
await expect(accountDisplay).toBeVisible({ timeout: proofTimeout });
2120
await expect(accountDisplay).toHaveText(/Account: 0x[a-fA-F0-9]{4}/);
2221

2322
// Cast vote
@@ -34,11 +33,9 @@ test('create account and cast vote', async ({ page }, testInfo) => {
3433
// Get the current vote count for the candidate
3534
await expect(voteResults).toHaveText(/.+/, { timeout: 10_000 });
3635
const currentResults = await voteResults.textContent();
37-
console.log(currentResults);
3836

3937
const match = currentResults.match(new RegExp(`Candidate ${candidateId}: (\\d+) votes`));
4038
const currentResultsNumber = parseInt(match?.[1]);
41-
console.log(candidateId, currentResults);
4239

4340
expect(currentResultsNumber).toBeGreaterThanOrEqual(0);
4441

0 commit comments

Comments
 (0)