From d5a909f88344bb4719fcb577ae0cfe6f479aa13a Mon Sep 17 00:00:00 2001 From: Tomi_Ohl Date: Wed, 15 Feb 2023 16:36:46 +0100 Subject: [PATCH] Revert "Deploy script: give feedback as soon as started" This reverts commit a04848bae046dfd8f20ceeafce77548f0fc97acb. --- scripts/deploy-feecollector.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy-feecollector.ts b/scripts/deploy-feecollector.ts index bf58931..7cfe6d5 100644 --- a/scripts/deploy-feecollector.ts +++ b/scripts/deploy-feecollector.ts @@ -6,6 +6,7 @@ const guildShareBps = 0; // The percentage of Guild's share expressed in basis p async function main() { const FeeCollector = await ethers.getContractFactory("FeeCollector"); + const feeCollector = await FeeCollector.deploy(guildFeeCollector, guildShareBps); console.log( `Deploying contract to ${ @@ -13,7 +14,6 @@ async function main() { }...` ); - const feeCollector = await FeeCollector.deploy(guildFeeCollector, guildShareBps); await feeCollector.deployed(); console.log("FeeCollector deployed to:", feeCollector.address);