trying to deploy again

This commit is contained in:
Yohan9206 2025-08-01 09:19:02 +03:00
parent aaef2dda1d
commit cb91b1ce7e

View file

@ -10,7 +10,7 @@ async function main() {
const Lock = await ethers.getContractFactory("Lock", deployer);
const lock = await Lock.deploy(unlockTime);
await lock.deployed();
await lock.waitForDeployment();
console.log("Lock deployed to:", lock.address);
}