Skip to content

Commit 79fb24b

Browse files
committed
fix(test): don't send all the test tokens to the faucet
1 parent 65c99f7 commit 79fb24b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/deploy/00-home-chain-arbitration.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ const deployERC20AndFaucet = async (hre: HardhatRuntimeEnvironment, deployer: st
148148
args: [erc20.address],
149149
log: true,
150150
});
151-
const funding = hre.ethers.utils.parseUnits("1000000", "ether");
151+
const funding = hre.ethers.utils.parseUnits("100000", "ether");
152152
const erc20Instance = await hre.ethers.getContract(ticker);
153153
await erc20Instance.balanceOf(deployer).then((balance) => {
154154
if (balance.gte(funding)) {

0 commit comments

Comments
 (0)