Skip to content

Commit

Permalink
Fix boxes
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Dec 9, 2024
1 parent 32eb3be commit 01915a1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions boxes/boxes/react/tests/node.test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { AccountWallet, CompleteAddress, Contract, Fr, createDebugLogger } from '@aztec/aztec.js';
import { AccountWallet, CompleteAddress, Contract, Fr, createLogger } from '@aztec/aztec.js';
import { BoxReactContract } from '../artifacts/BoxReact.js';
import { deployerEnv } from '../src/config.js';

const logger = createDebugLogger('aztec:http-pxe-client');
const logger = createLogger('aztec:http-pxe-client');

describe('BoxReact Contract Tests', () => {
let wallet: AccountWallet;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Open `cross_chain_messaging.test.ts` and paste the initial description of the te

```typescript
import { beforeAll, describe, beforeEach, expect, jest, it} from '@jest/globals'
import { AccountWallet, AztecAddress, BatchCall, type DebugLogger, EthAddress, Fr, computeAuthWitMessageHash, createDebugLogger, createPXEClient, waitForPXE, L1ToL2Message, L1Actor, L2Actor, type PXE, type Wallet } from '@aztec/aztec.js';
import { AccountWallet, AztecAddress, BatchCall, type DebugLogger, EthAddress, Fr, computeAuthWitMessageHash, createLogger, createPXEClient, waitForPXE, L1ToL2Message, L1Actor, L2Actor, type PXE, type Wallet } from '@aztec/aztec.js';
import { getInitialTestAccountsWallets } from '@aztec/accounts/testing';
import { TokenContract } from '@aztec/noir-contracts.js/Token';
import { sha256ToField } from '@aztec/foundation/crypto';
Expand Down Expand Up @@ -92,7 +92,7 @@ describe('e2e_cross_chain_messaging', () => {
let outbox: any;

beforeAll(async () => {
logger = createDebugLogger('aztec:e2e_uniswap');
logger = createLogger('aztec:e2e_uniswap');
const pxe = createPXEClient(PXE_URL);
await waitForPXE(pxe);
wallets = await getInitialTestAccountsWallets(pxe);
Expand All @@ -102,7 +102,7 @@ describe('e2e_cross_chain_messaging', () => {
})

beforeEach(async () => {
logger = createDebugLogger('aztec:e2e_uniswap');
logger = createLogger('aztec:e2e_uniswap');
const pxe = createPXEClient(PXE_URL);
await waitForPXE(pxe);

Expand Down

0 comments on commit 01915a1

Please sign in to comment.