Skip to content

Commit 83e5b61

Browse files
committed
test: fix changed constructor
1 parent b531d97 commit 83e5b61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/CrosschainERC677-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe("CrosschainERC677", () => {
2626

2727
// (ERC20 _coToken, address _minter, string memory _name, string memory _symbol, uint8 _decimals)
2828
const CrosschainERC677 = await ethers.getContractFactory("CrosschainERC677")
29-
const token = await CrosschainERC677.deploy(ZeroAddress, minter.address, "TestToken", "TEST", 18)
29+
const token = await CrosschainERC677.deploy(ZeroAddress, ZeroAddress, minter.address, "TestToken", "TEST", 18)
3030
await token.waitForDeployment()
3131

3232
await expect(token.connect(minter).mint(signer.address, parseEther("10"))).to.emit(token, "Transfer(address,address,uint256)")

0 commit comments

Comments
 (0)