Skip to content

Commit

Permalink
fix: remove auto verify in cbind ivc prove (#10627)
Browse files Browse the repository at this point in the history
Fixes the `wasm_client_ivc_integration_tests`

---------

Co-authored-by: ludamad <[email protected]>
  • Loading branch information
2 people authored and lucasxia01 committed Dec 11, 2024
1 parent 266cb9a commit a3c3d84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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<ClientIVC>(trace_settings, /*auto_verify_mode=*/true);
auto ivc = std::make_shared<ClientIVC>(trace_settings);

const acir_format::ProgramMetadata metadata{ ivc };

Expand Down
2 changes: 1 addition & 1 deletion yarn-project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit a3c3d84

Please sign in to comment.