fix(core): update

This commit is contained in:
Philipp Kunz 2019-02-23 16:09:57 +01:00
parent e73a29f643
commit b3d1dfc607

View File

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