Skip to content

Commit

Permalink
fix: removed useless 5seconds pause in mocked mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jatZama committed Aug 22, 2024
1 parent 051a774 commit e05f896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/taskGatewayRelayer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ task('task:launchFhevm')
const p2 = getCoin(ownerAddress);
const p3 = getCoin(relayerAddress);
await Promise.all([p1, p2, p3]);
await new Promise((res) => setTimeout(res, 5000)); // wait 5 seconds
}
}
await new Promise((res) => setTimeout(res, 5000)); // wait 5 seconds
console.log(`privateKey ${privKeyDeployer}`);
console.log(`ownerAddress ${ownerAddress}`);
await hre.run('task:deployGateway', { privateKey: privKeyDeployer, ownerAddress: ownerAddress });
Expand Down

0 comments on commit e05f896

Please sign in to comment.