Skip to content

Commit

Permalink
fix mock dapp contract
Browse files Browse the repository at this point in the history
  • Loading branch information
huangzhiran committed Jan 7, 2025
1 parent 9296a68 commit d46cc2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions smartcontracts/scripts/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ async function main() {
await MockDappLiveness.waitForDeployment();
console.log(`MockDappLiveness deployed to ${MockDappLiveness.target}`);

// const MockDapp = await ethers.deployContract('MockDapp', []);
// await MockDapp.waitForDeployment();
// console.log(`MockDapp deployed to ${MockDapp.target}`);
const MockDapp = await ethers.deployContract('MockDapp', []);
await MockDapp.waitForDeployment();
console.log(`MockDapp deployed to ${MockDapp.target}`);
}
if (process.env.PROJECT_REGISTRATION_FEE) {
projectRegistrationFee = process.env.PROJECT_REGISTRATION_FEE
Expand Down

0 comments on commit d46cc2d

Please sign in to comment.