From 79fb24bf05788bc772ccf529399c0d124d50bcae Mon Sep 17 00:00:00 2001 From: jaybuidl Date: Mon, 31 Jul 2023 11:44:55 +0100 Subject: [PATCH] fix(test): don't send all the test tokens to the faucet --- contracts/deploy/00-home-chain-arbitration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/deploy/00-home-chain-arbitration.ts b/contracts/deploy/00-home-chain-arbitration.ts index e3a4414ba..6b68badbb 100644 --- a/contracts/deploy/00-home-chain-arbitration.ts +++ b/contracts/deploy/00-home-chain-arbitration.ts @@ -148,7 +148,7 @@ const deployERC20AndFaucet = async (hre: HardhatRuntimeEnvironment, deployer: st args: [erc20.address], log: true, }); - const funding = hre.ethers.utils.parseUnits("1000000", "ether"); + const funding = hre.ethers.utils.parseUnits("100000", "ether"); const erc20Instance = await hre.ethers.getContract(ticker); await erc20Instance.balanceOf(deployer).then((balance) => { if (balance.gte(funding)) {