Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Invalid module name PancakeRouter02 #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/shared/fixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import UniswapV1Exchange from '../../build/UniswapV1Exchange.json'
import UniswapV1Factory from '../../build/UniswapV1Factory.json'
import PancakeRouter01 from '../../build/PancakeRouter01.json'
import PancakeMigrator from '../../build/PancakeMigrator.json'
import PancakeRouter02 from '../../build/PancakeRouter02.json'
import PancakeRouter from '../../build/PancakeRouter.json'
import RouterEventEmitter from '../../build/RouterEventEmitter.json'

const overrides = {
Expand Down Expand Up @@ -53,7 +53,7 @@ export async function v2Fixture(provider: Web3Provider, [wallet]: Wallet[]): Pro

// deploy routers
const router01 = await deployContract(wallet, PancakeRouter01, [factoryV2.address, WETH.address], overrides)
const router02 = await deployContract(wallet, PancakeRouter02, [factoryV2.address, WETH.address], overrides)
const router02 = await deployContract(wallet, PancakeRouter, [factoryV2.address, WETH.address], overrides)

// event emitter for testing
const routerEventEmitter = await deployContract(wallet, RouterEventEmitter, [])
Expand Down