Skip to content

Commit

Permalink
fix: new one
Browse files Browse the repository at this point in the history
  • Loading branch information
olehbairak committed Feb 29, 2024
1 parent fe053dc commit 40775b2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as ethers from "ethers";
import * as zksync from "zksync-web3";

import { localConfig } from "../../../config";
import { CustomValue, Logger, txSumEth } from "../../../entities";
import { Logger, txSumEth } from "../../../entities";
import { Helper } from "../../../helper";

export const depositEth = async function (sum = txSumEth) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { promises as fs } from "fs";
import * as zksync from "zksync-web3";

import { localConfig } from "../../../config";
import { Buffer, CustomValue, Logger, txSumEth, Wallets } from "../../../entities";
import { Buffer, Logger, txSumEth, Wallets } from "../../../entities";
import { Helper } from "../../../helper";

export const transferEth = async function (sum = txSumEth, address: string = Wallets.mainWalletPrivateKey) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { promises as fs } from "fs";
import * as zksync from "zksync-web3";

import { localConfig } from "../../../config";
import { Buffer, CustomValue, Logger, txSumEth } from "../../../entities";
import { Buffer, Logger, txSumEth } from "../../../entities";
import { Helper } from "../../../helper";

export const withdrawETH = async function (sum = txSumEth) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { promises as fs } from "fs";
import * as zksync from "zksync-web3";

import { localConfig } from "../../../config";
import { Buffer, CustomValue, Logger, txSumEth, Wallets } from "../../../entities";
import { Buffer, Logger, txSumEth, Wallets } from "../../../entities";
import { Helper } from "../../../helper";

export const withdrawETHtoOtherAddress = async function (sum = txSumEth) {
Expand Down
4 changes: 2 additions & 2 deletions packages/integration-tests/tests/ui/transactions.spec.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { expect, test } from "@playwright/test";

import { config } from "./config";
import { BlockExplorer, Buffer, CustomValue, Token, Wallets } from "../../src/entities";
import { BlockExplorer, Buffer, Token, txSumEth, Wallets } from "../../src/entities";
import { Helper } from "../../src/helper";

import type { Locator } from "@playwright/test";

const bufferRoute = "src/playbook/";
const helper = new Helper();
const txSum = CustomValue.txSumEth;
const txSum = txSumEth;
let url: string;
let bufferFile;
let failedTxHash: string;
Expand Down

0 comments on commit 40775b2

Please sign in to comment.