Skip to content

Commit be3f9cc

Browse files
committed
fix ambiguous erc20 resolution in check-fork-patch script
1 parent 04180cc commit be3f9cc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

hardhat.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ task(
9090
});
9191
//const xusd = await IERC20.at("0xb5999795BE0EbB5bAb23144AA5FD6A02D080299F");
9292
const xusd = await hre.ethers.getContractAt(
93-
"ERC20",
93+
"contracts/Dependencies/IERC20.sol:IERC20",
9494
"0xb5999795BE0EbB5bAb23144AA5FD6A02D080299F"
9595
);
9696
const totalSupply = await xusd.totalSupply();
@@ -168,7 +168,7 @@ const config: HardhatUserConfig = {
168168
runs: 100,
169169
},
170170
},
171-
}
171+
},
172172
],
173173
},
174174
paths: {
@@ -186,7 +186,7 @@ const config: HardhatUserConfig = {
186186
},
187187
signer2: {
188188
default: 2,
189-
}
189+
},
190190
},
191191
networks: {
192192
hardhat: {

0 commit comments

Comments
 (0)