Skip to content

Commit

Permalink
fix: specify the exact lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysu committed Nov 8, 2024
1 parent 8396c63 commit 1450b8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/system_tests_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,9 @@ export const createNewAccount = async (config?: {
const url = getSystemTestProviderUrl();
const web3 = new Web3(url);
web3.registerPlugin(new HardhatPlugin());
// eslint-disable-next-line
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call
await web3.hardhat.impersonateAccount(acc.address);
// eslint-disable-next-line
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call
await web3.hardhat.setBalance(acc.address, web3.utils.toHex('100000000'));
await closeOpenConnection(web3);
} else {
Expand All @@ -277,7 +277,7 @@ export const createNewAccount = async (config?: {
const url = getSystemTestProviderUrl();
const web3 = new Web3(url);
web3.registerPlugin(new HardhatPlugin());
// eslint-disable-next-line
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call
await web3.hardhat.setBalance(acc.address, web3.utils.toHex('100000000'));
await closeOpenConnection(web3);
} else {
Expand Down

0 comments on commit 1450b8b

Please sign in to comment.