Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: AztecProtocol/aztec-packages
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b114ec5cc1f1b6c5551b886003ff7555b6b00790
Choose a base ref
..
head repository: AztecProtocol/aztec-packages
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a1a9f0d068e58957b6915e596c3d20e61b40bb0d
Choose a head ref
Showing with 3 additions and 2 deletions.
  1. +2 −1 yarn-project/end-to-end/src/e2e_prover/full.test.ts
  2. +1 −1 yarn-project/end-to-end/src/e2e_prover/with_padding.test.ts
3 changes: 2 additions & 1 deletion yarn-project/end-to-end/src/e2e_prover/full.test.ts
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ describe('full_prover', () => {
});

afterEach(async () => {
// Tx validation is skipped here because checking the simulation fails the proof validation
// TODO: (#8187) Tx validation is skipped here because checking the simulation fails the proof validation
await t.tokenSim.check(true);
});

@@ -42,6 +42,7 @@ describe('full_prover', () => {
expect(privateSendAmount).toBeGreaterThan(0n);
const privateInteraction = provenAssets[0].methods.transfer(accounts[1].address, privateSendAmount);

// TODO: (#8187) This works with above private balance, but not public balance below.
const publicBalance = await provenAssets[1].methods.balance_of_public(accounts[0].address).simulate({
skipTxValidation: true,
});
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ describe('full_prover_with_padding_tx', () => {
});

afterEach(async () => {
// Tx validation is skipped here because checking the simulation fails the proof validation
// TODO: (#8187) Tx validation is skipped here because checking the simulation fails the proof validation
await t.tokenSim.check(true);
});