Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
charlielye committed Apr 11, 2024
1 parent e57b0ef commit a3e07fe
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 404 deletions.
415 changes: 16 additions & 399 deletions .circleci/config.yml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ import {
} from 'viem';
import { type PrivateKeyAccount, privateKeyToAccount } from 'viem/accounts';

import { setupL1Contracts } from './fixtures/utils.js';
import { setupL1Contracts } from '../fixtures/utils.js';

// Accounts 4 and 5 of Anvil default startup with mnemonic: 'test test test test test test test test test test test junk'
const sequencerPK = '0x47e179ec197488593b187f80a00eb0da91f1b9d0b13f8733639f19c30a34926a';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { waitForPXE } from '@aztec/aztec.js';
import { pxeTestSuite } from '@aztec/pxe';

import { setup } from './fixtures/utils.js';
import { setup } from '../fixtures/utils.js';

const setupEnv = async () => {
const { pxe } = await setup(0);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { setup as e2eSetup } from './fixtures/utils.js';
import { type UniswapSetupContext, uniswapL1L2TestSuite } from './shared/uniswap_l1_l2.js';
import { setup as e2eSetup } from '../fixtures/utils.js';
import { type UniswapSetupContext, uniswapL1L2TestSuite } from '../shared/uniswap_l1_l2.js';

// This tests works on forked mainnet. There is a dump of the data in `dumpedState` such that we
// don't need to burn through RPC requests.
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/end-to-end/src/e2e_account_init_fees.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ describe('e2e_fees_account_init', () => {
}

beforeAll(async () => {
ctx = await setup(2);
ctx = await setup(2, {}, {}, true);
logger = ctx.logger;
[sequencer, alice] = ctx.wallets;
sequencersAddress = sequencer.getAddress();
Expand Down

0 comments on commit a3e07fe

Please sign in to comment.