From 42482e33778525f44094cb292ca174b69c42ed47 Mon Sep 17 00:00:00 2001 From: Garry Passarella Date: Fri, 18 Jan 2019 15:41:14 +0000 Subject: [PATCH] Added blank passphrase so wallet can be created --- .../create/confirm-mnemonic/confirm-mnemonic.component.ts | 3 ++- Breeze.UI/src/app/shared/classes/wallet-creation.ts | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Breeze.UI/src/app/setup/create/confirm-mnemonic/confirm-mnemonic.component.ts b/Breeze.UI/src/app/setup/create/confirm-mnemonic/confirm-mnemonic.component.ts index fa09fca..11aedf8 100644 --- a/Breeze.UI/src/app/setup/create/confirm-mnemonic/confirm-mnemonic.component.ts +++ b/Breeze.UI/src/app/setup/create/confirm-mnemonic/confirm-mnemonic.component.ts @@ -32,7 +32,8 @@ export class ConfirmMnemonicComponent implements OnInit { this.newWallet = new WalletCreation( params["name"], params["mnemonic"], - params["password"] + params["password"], + params["passphrase"] ) }); } diff --git a/Breeze.UI/src/app/shared/classes/wallet-creation.ts b/Breeze.UI/src/app/shared/classes/wallet-creation.ts index 02a65fa..406218f 100644 --- a/Breeze.UI/src/app/shared/classes/wallet-creation.ts +++ b/Breeze.UI/src/app/shared/classes/wallet-creation.ts @@ -5,10 +5,12 @@ export class WalletCreation { this.mnemonic = mnemonic; this.password = password; this.folderPath = folderPath; + this.passphrase = ""; } name: string; mnemonic: string; password: string; folderPath?: string; + passphrase: string; }