Skip to content

Commit

Permalink
fix(test): don't send all the test tokens to the faucet
Browse files Browse the repository at this point in the history
  • Loading branch information
jaybuidl committed Jul 31, 2023
1 parent 65c99f7 commit 79fb24b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/deploy/00-home-chain-arbitration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit 79fb24b

Please sign in to comment.