From b3d1dfc60764e593dacc8d1398648f2220d8868d Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sat, 23 Feb 2019 16:09:57 +0100 Subject: [PATCH] fix(core): update --- ts/smartkey.classes.smartkey.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/smartkey.classes.smartkey.ts b/ts/smartkey.classes.smartkey.ts index 5d69d6d..1a2b286 100644 --- a/ts/smartkey.classes.smartkey.ts +++ b/ts/smartkey.classes.smartkey.ts @@ -3,7 +3,7 @@ import { KeyPair } from './smartkey.classes.keypair'; export class SmartKey { // instance - public async getKeypair(passohrase?: string): Promise { - return KeyPair.createKeyPair(); + public async getKeypair(passphraseArg?: string): Promise { + return KeyPair.createKeyPair(passphraseArg); } }