Skip to content

Commit

Permalink
Updated vulnerable dependencies and fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Simeonov committed Apr 4, 2022
1 parent 6cfa3db commit 490a50c
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 36 deletions.
80 changes: 47 additions & 33 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cryptoapis-wallet-recovery-tool",
"author": "Crypto APIs <[email protected]>",
"description": "Tool for recovering private key from wallet recovery data",
"version": "0.1.2",
"version": "0.1.3",
"main": "./src/main.js",
"license": "MIT",
"homepage": "https://bitbucket.org/menadev/cryptoapis-recovery-tool-lib#readme",
Expand Down Expand Up @@ -30,7 +30,7 @@
"validate.js": "^0.13.1"
},
"devDependencies": {
"electron": "^15.3.0",
"electron": "^15.3.5",
"electron-builder": "^22.10.5"
},
"build": {
Expand Down
2 changes: 1 addition & 1 deletion src/services/recover.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class RecoverService extends BaseService {

const privateKeyDataJson = await this.getJsonFromFile(rsaPath);
if (!privateKeyDataJson) {
return "Private RSA kye input file is invalid";
return "Private RSA key input file is invalid";
}

const rsaValidationResult = this.validator.validatePrivateKey(privateKeyDataJson);
Expand Down

0 comments on commit 490a50c

Please sign in to comment.