Skip to content

Commit

Permalink
fix(setup-tutorial.ts) json error (#130)
Browse files Browse the repository at this point in the history
JSON formatting error in setup-tutorial.ts
  • Loading branch information
tudorpintea999 authored Dec 5, 2023
1 parent daa335a commit 2f39eff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/setup-tutorial.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ EXECUTE_PROGRAMMATICALLY=true`;
});
}
function saveWalletFile(address: string, privateKey: string, jsonPath: string): void {
const data = `{"address": "${address}", "privateKey": "${privateKey}}`;
const data = `{"address": "${address}", "privateKey": "${privateKey}"}`;


fs.access(jsonPath, err => {
if (err) {
Expand Down

0 comments on commit 2f39eff

Please sign in to comment.