Skip to content

Commit

Permalink
resolving linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Evangel90 committed Nov 30, 2024
1 parent 7d309c3 commit 4cf54f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/hardhat/deploy/00_deploy_your_contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const deployYourContract: DeployFunction = async function (hre: HardhatRuntimeEn
await deploy("Lottery", {
from: deployer,
// Contract constructor arguments
args: ["Group7LotteryToken", "G7T", 10000n, parseEther('0.0001'), parseEther("0.00002")],
args: ["Group7LotteryToken", "G7T", 10000n, parseEther("0.0001"), parseEther("0.00002")],
log: true,
// autoMine: can be passed to the deploy function to make the deployment process faster on local networks by
// automatically mining the contract deployment transaction. There is no effect on live networks.
Expand Down

0 comments on commit 4cf54f4

Please sign in to comment.