Skip to content

Commit

Permalink
chore(): remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
limitofzero committed Jan 16, 2024
1 parent 3a02991 commit ceea006
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/e2e-tests/tests/helpers/fixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,11 @@ export async function deploySwapTokens () {
const weth = await WrappedTokenMock.deploy('WETH', 'WETH');

await weth.waitForDeployment();
const inch = await TokenMock.deploy('1INCH', '1INCH');
await inch.waitForDeployment();
const LimitOrderProtocol = await ethers.getContractFactory('LimitOrderProtocol');
const swap = await LimitOrderProtocol.deploy(await weth.getAddress());
await swap.waitForDeployment();
const TokenCustomDecimalsMock = await ethers.getContractFactory('TokenCustomDecimalsMock');
const usdc = await TokenCustomDecimalsMock.deploy('USDC', 'USDC', '0', 6);
await usdc.waitForDeployment();
const chainId = (await ethers.provider.getNetwork()).chainId;
return { dai, weth, inch, swap, chainId, usdc };
return { dai, weth, swap, chainId };
};

export async function deployArbitraryPredicate () {
Expand Down

0 comments on commit ceea006

Please sign in to comment.