Skip to content

Commit

Permalink
tests: Remove MULTICALL references.
Browse files Browse the repository at this point in the history
  • Loading branch information
johngrantuk committed Oct 12, 2023
1 parent 84402ef commit 4fdfb72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions test/fxPool.integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { beforeAll, beforeEach, describe, expect, test } from 'vitest';
import dotenv from 'dotenv';
dotenv.config();

import { BATCHSIZE, ChainId, MULTICALL, VAULT } from '../src/utils';
import { BATCHSIZE, ChainId, VAULT } from '../src/utils';
import {
BasePool,
OnChainPoolDataEnricher,
Expand Down Expand Up @@ -49,7 +49,6 @@ describe('fx integration tests', () => {
const onChainPoolDataEnricher = new OnChainPoolDataEnricher(
chainId,
rpcUrl,
MULTICALL[chainId],
BATCHSIZE[chainId],
VAULT[chainId],
);
Expand Down
3 changes: 1 addition & 2 deletions test/gyroEV2Pool.integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import dotenv from 'dotenv';
dotenv.config();

import testPools from './lib/testData/gyroETestPool.json';
import { BATCHSIZE, ChainId, MULTICALL, VAULT } from '../src/utils';
import { BATCHSIZE, ChainId, VAULT } from '../src/utils';
import {
BasePool,
OnChainPoolDataEnricher,
Expand Down Expand Up @@ -45,7 +45,6 @@ describe('gyroEV2: WMATIC-stMATIC integration tests', () => {
const onChainPoolDataEnricher = new OnChainPoolDataEnricher(
chainId,
rpcUrl,
MULTICALL[chainId],
BATCHSIZE[chainId],
VAULT[chainId],
);
Expand Down

0 comments on commit 4fdfb72

Please sign in to comment.