From 3099d062ec0393abb63a29508295f4c4a4b3a7d7 Mon Sep 17 00:00:00 2001 From: LHerskind Date: Tue, 22 Aug 2023 20:05:54 +0000 Subject: [PATCH] chore: imports cleanup --- yarn-project/end-to-end/src/e2e_lending_contract.test.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/yarn-project/end-to-end/src/e2e_lending_contract.test.ts b/yarn-project/end-to-end/src/e2e_lending_contract.test.ts index 78f71c27694b..1e305ba7688e 100644 --- a/yarn-project/end-to-end/src/e2e_lending_contract.test.ts +++ b/yarn-project/end-to-end/src/e2e_lending_contract.test.ts @@ -1,11 +1,10 @@ import { AztecNodeService } from '@aztec/aztec-node'; import { AztecRPCServer } from '@aztec/aztec-rpc'; -import { AztecAddress, CheatCodes, Fr, Wallet, computeMessageSecretHash, sleep } from '@aztec/aztec.js'; +import { AztecAddress, CheatCodes, Fr, Wallet, computeMessageSecretHash } from '@aztec/aztec.js'; import { CircuitsWasm, CompleteAddress } from '@aztec/circuits.js'; import { pedersenPlookupCommitInputs } from '@aztec/circuits.js/barretenberg'; import { DebugLogger } from '@aztec/foundation/log'; -import { LendingContract, PriceFeedContract } from '@aztec/noir-contracts/types'; -import { NativeTokenContract } from '@aztec/noir-contracts/types'; +import { LendingContract, NativeTokenContract, PriceFeedContract } from '@aztec/noir-contracts/types'; import { AztecRPC, TxStatus } from '@aztec/types'; import { setup } from './fixtures/utils.js';