From 1a639794d7ae20718acc454153ffa333e53df7ca Mon Sep 17 00:00:00 2001 From: Mubaris NK Date: Mon, 29 Mar 2021 10:30:39 +0530 Subject: [PATCH] Minor change --- scripts/deploy.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deploy.js b/scripts/deploy.js index e84b3ed..c144dfa 100644 --- a/scripts/deploy.js +++ b/scripts/deploy.js @@ -51,6 +51,8 @@ async function main() { const Timelock = await ethers.getContractFactory("InstaTimelock") const timelock = await Timelock.deploy(governorDelegator.address, timelockDelay) + await timelock.deployed() + console.log("InstaTokenDelegate: ", tokenDelegate.address) console.log("InstaTokenDelegator: ", tokenDelegator.address) console.log("InstaTimelock: ", timelock.address) @@ -58,8 +60,6 @@ async function main() { console.log("InstaGovernorBravoDelegator: ", governorDelegator.address) console.log() - await timelock.deployed() - await hre.run("verify:verify", { address: tokenDelegate.address, constructorArguments: []