Skip to content

Commit 5451f4d

Browse files
ThunkarDanielKotov
authored andcommitted
fix: disable proving on vite box (#12971)
After #12964, proving was enabled on the box. For the time being, let's deactivate it since: - Tests are more "smoky", and we will properly test/benchmark the wasm prover elsewhere. - WASM proving is currently broken, it goes over 4GB limit when deploying a simple contract.
1 parent fe7cca3 commit 5451f4d

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

boxes/boxes/vite/src/config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export class PrivateEnv {
2323
const aztecNode = await createAztecNodeClient(nodeURL);
2424
const config = getPXEServiceConfig();
2525
config.dataDirectory = "pxe";
26+
config.proverEnabled = false;
2627
const l1Contracts = await aztecNode.getL1ContractAddresses();
2728
const configWithContracts = {
2829
...config,

boxes/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
"vitest": "^2.0.5"
4545
},
4646
"devDependencies": {
47-
"@playwright/test": "1.49.0"
47+
"@playwright/test": "1.49.0",
48+
"webpack-dev-server": "^5.2.0"
4849
}
4950
}

boxes/yarn.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3611,6 +3611,7 @@ __metadata:
36113611
pino-pretty: "npm:^10.3.1"
36123612
tiged: "npm:^2.12.6"
36133613
vitest: "npm:^2.0.5"
3614+
webpack-dev-server: "npm:^5.2.0"
36143615
bin:
36153616
aztec-app: bin.js
36163617
languageName: unknown

0 commit comments

Comments
 (0)