From 0673191d9a47229cbdec933e837aeaed84afdf46 Mon Sep 17 00:00:00 2001 From: ledwards2225 Date: Wed, 11 Dec 2024 15:31:16 +0000 Subject: [PATCH 1/4] remove auto verify in cbind ivc prove --- barretenberg/cpp/src/barretenberg/dsl/acir_proofs/c_bind.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/barretenberg/cpp/src/barretenberg/dsl/acir_proofs/c_bind.cpp b/barretenberg/cpp/src/barretenberg/dsl/acir_proofs/c_bind.cpp index 817e772ade1..d4045e636e6 100644 --- a/barretenberg/cpp/src/barretenberg/dsl/acir_proofs/c_bind.cpp +++ b/barretenberg/cpp/src/barretenberg/dsl/acir_proofs/c_bind.cpp @@ -298,7 +298,7 @@ WASM_EXPORT void acir_prove_aztec_client(uint8_t const* acir_stack, } // TODO(https://github.com/AztecProtocol/barretenberg/issues/1101): remove use of auto_verify_mode TraceSettings trace_settings{ E2E_FULL_TEST_STRUCTURE }; - auto ivc = std::make_shared(trace_settings, /*auto_verify_mode=*/true); + auto ivc = std::make_shared(trace_settings); const acir_format::ProgramMetadata metadata{ ivc }; From 6388f0efe38de897ed4fbc1810817dd34970ca90 Mon Sep 17 00:00:00 2001 From: ledwards2225 Date: Wed, 11 Dec 2024 16:41:32 +0000 Subject: [PATCH 2/4] comment hack to run yarn proj --- .../ivc-integration/src/wasm_client_ivc_integration.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/ivc-integration/src/wasm_client_ivc_integration.test.ts b/yarn-project/ivc-integration/src/wasm_client_ivc_integration.test.ts index f6402e91cb3..379a27bdb99 100644 --- a/yarn-project/ivc-integration/src/wasm_client_ivc_integration.test.ts +++ b/yarn-project/ivc-integration/src/wasm_client_ivc_integration.test.ts @@ -86,7 +86,7 @@ describe('Client IVC Integration', () => { const tx = { number_of_calls: '0x2', }; - // Witness gen app and kernels + // Witness gen for app and kernels const creatorAppWitnessGenResult = await witnessGenCreatorAppMockCircuit({ commitments_to_create: ['0x1', '0x2'] }); const readerAppWitnessGenResult = await witnessGenReaderAppMockCircuit({ commitments_to_read: ['0x2', '0x0'] }); From 10c592473b2c9e588c87265f81d504a009ea72b8 Mon Sep 17 00:00:00 2001 From: ledwards2225 Date: Wed, 11 Dec 2024 17:08:20 +0000 Subject: [PATCH 3/4] undo --- .../ivc-integration/src/wasm_client_ivc_integration.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/ivc-integration/src/wasm_client_ivc_integration.test.ts b/yarn-project/ivc-integration/src/wasm_client_ivc_integration.test.ts index 379a27bdb99..f6402e91cb3 100644 --- a/yarn-project/ivc-integration/src/wasm_client_ivc_integration.test.ts +++ b/yarn-project/ivc-integration/src/wasm_client_ivc_integration.test.ts @@ -86,7 +86,7 @@ describe('Client IVC Integration', () => { const tx = { number_of_calls: '0x2', }; - // Witness gen for app and kernels + // Witness gen app and kernels const creatorAppWitnessGenResult = await witnessGenCreatorAppMockCircuit({ commitments_to_create: ['0x1', '0x2'] }); const readerAppWitnessGenResult = await witnessGenReaderAppMockCircuit({ commitments_to_read: ['0x2', '0x0'] }); From 7e5387dd1b8c0a0e0701785044c16f357a983e14 Mon Sep 17 00:00:00 2001 From: ludamad Date: Wed, 11 Dec 2024 12:34:46 -0500 Subject: [PATCH 4/4] Update package.json --- yarn-project/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yarn-project/package.json b/yarn-project/package.json index 436b2ac0a49..7d31e95a5c8 100644 --- a/yarn-project/package.json +++ b/yarn-project/package.json @@ -10,7 +10,7 @@ "formatting:fix": "FORCE_COLOR=true yarn workspaces foreach -p -v run formatting:fix", "lint": "yarn eslint --cache --ignore-pattern l1-artifacts .", "format": "yarn prettier --cache -w .", - "test": "FORCE_COLOR=true yarn workspaces foreach --exclude @aztec/ivc-integration --exclude @aztec/aztec3-packages --exclude @aztec/end-to-end --exclude @aztec/prover-client -p -v run test && yarn workspaces foreach --include @aztec/end-to-end -p -v run test:unit", + "test": "FORCE_COLOR=true yarn workspaces foreach --exclude @aztec/aztec3-packages --exclude @aztec/end-to-end --exclude @aztec/prover-client -p -v run test && yarn workspaces foreach --include @aztec/end-to-end -p -v run test:unit", "build": "FORCE_COLOR=true yarn workspaces foreach --parallel --topological-dev --verbose --exclude @aztec/aztec3-packages --exclude @aztec/docs run build", "build:fast": "cd foundation && yarn build && cd ../l1-artifacts && yarn build && cd ../circuits.js && yarn build && cd .. && yarn generate && tsc -b", "build:dev": "./watch.sh", @@ -85,4 +85,4 @@ "@noir-lang/noir_js": "file:../noir/packages/noir_js", "jest-runner@^29.7.0": "patch:jest-runner@npm%3A29.7.0#./.yarn/patches/jest-runner-npm-29.7.0-3bc9f82b58.patch" } -} \ No newline at end of file +}