Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ This fetches the wallets from the sandbox and deploys our cross chain harness on

## Public flow test

#include_code e2e_public_cross_chain /yarn-project/end-to-end/src/e2e_public_cross_chain_messaging.test.ts typescript
#include_code e2e_public_cross_chain /yarn-project/end-to-end/src/e2e_public_cross_chain_messaging/deposits.test.ts typescript

## Running the test

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,8 @@ export class BlacklistTokenContractTest {
this.admin = this.wallets[0];
this.other = this.wallets[1];
this.blacklisted = this.wallets[2];
// this.accounts = this.wallets.map(a => a.getCompleteAddress());
this.accounts = await pxe.getRegisteredAccounts();
this.wallets.forEach((w, i) => this.logger.verbose(`Wallet ${i} address: ${w.getAddress()}`));
this.accounts.forEach((w, i) => this.logger.verbose(`Account ${i} address: ${w.address}`));
});

await this.snapshotManager.snapshot(
Expand Down
Loading