Skip to content

Commit

Permalink
Revert "Deploy script: give feedback as soon as started"
Browse files Browse the repository at this point in the history
This reverts commit a04848b.
  • Loading branch information
TomiOhl committed Feb 15, 2023
1 parent a04848b commit d5a909f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/deploy-feecollector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ 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 ${
ethers.provider.network.name !== "unknown" ? ethers.provider.network.name : ethers.provider.network.chainId
}...`
);

const feeCollector = await FeeCollector.deploy(guildFeeCollector, guildShareBps);
await feeCollector.deployed();

console.log("FeeCollector deployed to:", feeCollector.address);
Expand Down

0 comments on commit d5a909f

Please sign in to comment.