Skip to content

Commit e335c48

Browse files
committed
fmt fix
1 parent a1fd4a9 commit e335c48

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

yarn-project/end-to-end/src/e2e_fees/account_init.test.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,11 @@ describe('e2e_fees account_init', () => {
192192
await expect(t.getGasBalanceFn(aliceAddress)).resolves.toEqual([alicesInitialGas - tx.transactionFee!]);
193193

194194
// bob can now use his wallet for sending txs
195-
await bananaCoin.withWallet(bobsWallet).methods.transfer_in_public(bobsAddress, aliceAddress, 0n, 0n).send().wait();
195+
await bananaCoin
196+
.withWallet(bobsWallet)
197+
.methods.transfer_in_public(bobsAddress, aliceAddress, 0n, 0n)
198+
.send()
199+
.wait();
196200
});
197201
});
198202
});

yarn-project/end-to-end/src/e2e_token_contract/transfer.test.ts

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
1-
import {
2-
AztecAddress,
3-
CompleteAddress
4-
} from '@aztec/aztec.js';
1+
import { AztecAddress, CompleteAddress } from '@aztec/aztec.js';
52
import { TokenContract, type Transfer } from '@aztec/noir-contracts.js';
63

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

96
describe('e2e_token_contract transfer private', () => {
107
const t = new TokenContractTest('transfer_private');
11-
let { asset, accounts, tokenSim, wallets, badAccount } = t;
8+
let { asset, accounts, tokenSim, wallets } = t;
129

1310
beforeAll(async () => {
1411
await t.applyBaseSnapshots();
1512
await t.applyMintSnapshot();
1613
await t.setup();
17-
({ asset, accounts, tokenSim, wallets, badAccount } = t);
14+
({ asset, accounts, tokenSim, wallets } = t);
1815
});
1916

2017
afterAll(async () => {

yarn-project/end-to-end/src/e2e_token_contract/transfer_in_private.test.ts

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
import {
2-
Fr,
3-
computeAuthWitMessageHash,
4-
computeInnerAuthWitHashFromAction
5-
} from '@aztec/aztec.js';
1+
import { Fr, computeAuthWitMessageHash, computeInnerAuthWitHashFromAction } from '@aztec/aztec.js';
62

73
import { DUPLICATE_NULLIFIER_ERROR } from '../fixtures/fixtures.js';
84
import { TokenContractTest } from './token_contract_test.js';

0 commit comments

Comments
 (0)