Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
itegulov committed Dec 17, 2024
1 parent d6879a9 commit 2fe56af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e-tests/test/eth-apis.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down Expand Up @@ -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]);
Expand Down

0 comments on commit 2fe56af

Please sign in to comment.