Skip to content

Commit

Permalink
docs(main.ts, mina-setup.ts): update usage instructions to reflect ne…
Browse files Browse the repository at this point in the history
…w build command and file path

fix(mina-setup.ts): correct the error message to match the updated usage instructions for better user guidance
  • Loading branch information
MartinMinkov committed Aug 29, 2023
1 parent 5ea68c0 commit 88459bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Usage: node build/node/main.ts <deployer private key> <zkapp private key>
Usage: npm run build && node build/src/examples/main.js <deployer private key> <zkapp private key>
*/

import {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export async function initializeKeys(
} else {
if (process.argv.length != 4) {
throw Error(
'Usage: node build/node/main.ts <deployer private key> <zkapp private key>'
'Usage: node build/src/examples/main.js <deployer private key> <zkapp private key>'
);
}

Expand Down

0 comments on commit 88459bb

Please sign in to comment.