Skip to content

Commit

Permalink
removed usdc tests from health checks
Browse files Browse the repository at this point in the history
  • Loading branch information
yudilevi committed Nov 14, 2023
1 parent 936a637 commit 57d7874
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions deploy/tests/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@ import { getNamedAccounts } from 'hardhat';
BNT = 'BNT',
ETH = 'ETH',
LINK = 'LINK',
USDC = 'USDC',
WBTC = 'WBTC'
}

Expand Down Expand Up @@ -284,8 +283,8 @@ import { getNamedAccounts } from 'hardhat';
};

beforeEach(async () => {
const { link, usdc, wbtc } = await getNamedAccounts();
const { linkWhale, usdcWhale, wbtcWhale } = await getNamedSigners();
const { link, wbtc } = await getNamedAccounts();
const { linkWhale, wbtcWhale } = await getNamedSigners();

pools = {
[TestPools.ETH]: {
Expand All @@ -296,11 +295,6 @@ import { getNamedAccounts } from 'hardhat';
token: link,
whale: linkWhale
},
[TestPools.USDC]: {
token: usdc,
whale: usdcWhale,
decimals: 6
},
[TestPools.WBTC]: {
token: wbtc,
whale: wbtcWhale,
Expand Down

0 comments on commit 57d7874

Please sign in to comment.