Skip to content

Commit

Permalink
fmt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Nov 13, 2024
1 parent a1fd4a9 commit e335c48
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
6 changes: 5 additions & 1 deletion yarn-project/end-to-end/src/e2e_fees/account_init.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,11 @@ describe('e2e_fees account_init', () => {
await expect(t.getGasBalanceFn(aliceAddress)).resolves.toEqual([alicesInitialGas - tx.transactionFee!]);

// bob can now use his wallet for sending txs
await bananaCoin.withWallet(bobsWallet).methods.transfer_in_public(bobsAddress, aliceAddress, 0n, 0n).send().wait();
await bananaCoin
.withWallet(bobsWallet)
.methods.transfer_in_public(bobsAddress, aliceAddress, 0n, 0n)
.send()
.wait();
});
});
});
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
import {
AztecAddress,
CompleteAddress
} from '@aztec/aztec.js';
import { AztecAddress, CompleteAddress } from '@aztec/aztec.js';
import { TokenContract, type Transfer } from '@aztec/noir-contracts.js';

import { TokenContractTest } from './token_contract_test.js';

describe('e2e_token_contract transfer private', () => {
const t = new TokenContractTest('transfer_private');
let { asset, accounts, tokenSim, wallets, badAccount } = t;
let { asset, accounts, tokenSim, wallets } = t;

beforeAll(async () => {
await t.applyBaseSnapshots();
await t.applyMintSnapshot();
await t.setup();
({ asset, accounts, tokenSim, wallets, badAccount } = t);
({ asset, accounts, tokenSim, wallets } = t);
});

afterAll(async () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
import {
Fr,
computeAuthWitMessageHash,
computeInnerAuthWitHashFromAction
} from '@aztec/aztec.js';
import { Fr, computeAuthWitMessageHash, computeInnerAuthWitHashFromAction } from '@aztec/aztec.js';

import { DUPLICATE_NULLIFIER_ERROR } from '../fixtures/fixtures.js';
import { TokenContractTest } from './token_contract_test.js';
Expand Down

0 comments on commit e335c48

Please sign in to comment.