From 2fe56afddb39f6de75175b649771266402dd3f70 Mon Sep 17 00:00:00 2001 From: Daniyar Itegulov Date: Tue, 17 Dec 2024 17:34:47 +1100 Subject: [PATCH] prettier --- e2e-tests/test/eth-apis.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e-tests/test/eth-apis.test.ts b/e2e-tests/test/eth-apis.test.ts index 721ed091..2da606ec 100644 --- a/e2e-tests/test/eth-apis.test.ts +++ b/e2e-tests/test/eth-apis.test.ts @@ -3,7 +3,7 @@ import { Wallet } from "zksync-ethers"; import { expectThrowsAsync, getTestProvider } from "../helpers/utils"; import { RichAccounts } from "../helpers/constants"; import { ethers } from "ethers"; -import {TransactionResponse} from "zksync-ethers/build/types"; +import { TransactionResponse } from "zksync-ethers/build/types"; const provider = getTestProvider(); @@ -98,7 +98,7 @@ describe("eth_sendTransaction", function () { // Wait for the transaction to be mined and get the receipt. Used via `TransactionResponse` // as the upstream implementation of `Provider::waitForTransaction` has a known race condition: // https://github.com/ethers-io/ethers.js/issues/4224. - const txResponse = new TransactionResponse({ hash, ...transaction}, provider); + const txResponse = new TransactionResponse({ hash, ...transaction }, provider); const receipt = await txResponse.wait(); await provider.send("hardhat_stopImpersonatingAccount", [fromAddr]);