Skip to content

Commit 985aef1

Browse files
authored
fix: use e2e structure in cbind (#10585)
1 parent 679684d commit 985aef1

File tree

1 file changed

+2
-2
lines changed
  • barretenberg/cpp/src/barretenberg/dsl/acir_proofs

1 file changed

+2
-2
lines changed

barretenberg/cpp/src/barretenberg/dsl/acir_proofs/c_bind.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ WASM_EXPORT void acir_prove_and_verify_aztec_client(uint8_t const* acir_stack,
235235
}
236236
// TODO(#7371) dedupe this with the rest of the similar code
237237
// TODO(https://github.com/AztecProtocol/barretenberg/issues/1101): remove use of auto_verify_mode
238-
ClientIVC ivc{ { CLIENT_IVC_BENCH_STRUCTURE }, /*auto_verify_mode=*/true };
238+
ClientIVC ivc{ { E2E_FULL_TEST_STRUCTURE }, /*auto_verify_mode=*/true };
239239

240240
// Accumulate the entire program stack into the IVC
241241
// TODO(https://github.com/AztecProtocol/barretenberg/issues/1116): remove manual setting of is_kernel once databus
@@ -292,7 +292,7 @@ WASM_EXPORT void acir_prove_aztec_client(uint8_t const* acir_stack,
292292
}
293293
// TODO(#7371) dedupe this with the rest of the similar code
294294
// TODO(https://github.com/AztecProtocol/barretenberg/issues/1101): remove use of auto_verify_mode
295-
ClientIVC ivc{ { CLIENT_IVC_BENCH_STRUCTURE }, /*auto_verify_mode=*/true };
295+
ClientIVC ivc{ { E2E_FULL_TEST_STRUCTURE }, /*auto_verify_mode=*/true };
296296

297297
// Accumulate the entire program stack into the IVC
298298
// TODO(https://github.com/AztecProtocol/barretenberg/issues/1116): remove manual setting of is_kernel once databus

0 commit comments

Comments
 (0)