Commit 91ce31b8 authored by dev0tion's avatar dev0tion

Add folderPath and Name to wallet creation

parent ed923e4a
......@@ -20,6 +20,8 @@ export class CreateComponent {
private createWallet(password: string, network: string, folderPath: string, name: string, ) {
this.newWallet.password = password;
this.newWallet.network = network;
this.newWallet.folderPath = folderPath;
this.newWallet.name = name;
this.apiService
.createWallet(this.newWallet)
......
export class WalletCreation {
password: string;
network: string;
folderPath: string;
name: string;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment