2 Commits

Author SHA1 Message Date
11f574536c 1.0.6 2019-02-23 16:09:57 +01:00
b3d1dfc607 fix(core): update 2019-02-23 16:09:57 +01:00
3 changed files with 4 additions and 4 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartkey",
"version": "1.0.5",
"version": "1.0.6",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartkey",
"version": "1.0.5",
"version": "1.0.6",
"private": false,
"description": "handle private/public key creation",
"main": "dist/index.js",

View File

@ -3,7 +3,7 @@ import { KeyPair } from './smartkey.classes.keypair';
export class SmartKey {
// instance
public async getKeypair(passohrase?: string): Promise<KeyPair> {
return KeyPair.createKeyPair();
public async getKeypair(passphraseArg?: string): Promise<KeyPair> {
return KeyPair.createKeyPair(passphraseArg);
}
}