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; }