Skip to content

Commit

Permalink
Update infrastructure/zk/src/run/run.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Igor Aleksanov <[email protected]>
  • Loading branch information
pluveto and popzxc authored Nov 30, 2023
1 parent d3e59b3 commit fff4a60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infrastructure/zk/src/run/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export async function plonkSetup(powers?: number[]) {
fs.mkdirSync('keys/setup', { recursive: true });
process.chdir('keys/setup');
for (let i = 0; i < powers.length; i++) {
let power = powers[i];
const power = powers[i];
if (!fs.existsSync(`setup_2^${power}.key`)) {
await utils.spawn(`curl -LO ${URL}/setup_2^${power}.key`);
await utils.sleep(1);
Expand Down

0 comments on commit fff4a60

Please sign in to comment.