From: ThomasV Date: Mon, 28 Apr 2014 12:58:43 +0000 (+0200) Subject: add_seed X-Git-Url: https://git.novaco.in/?a=commitdiff_plain;h=6d75ca795be7a2de5f7537744769cdf6791097c8;p=electrum-nvc.git add_seed --- diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index 3a0be28..9f6b35c 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -294,7 +294,7 @@ class InstallWizard(QDialog): if not self.verify_seed(seed, sid): return password = self.password_dialog() - wallet.save_seed(seed, password) + wallet.add_seed(seed, password) if action == 'create2of3': run_hook('create_third_key', wallet, self) @@ -315,7 +315,7 @@ class InstallWizard(QDialog): if Wallet.is_seed(text): password = self.password_dialog() wallet = Wallet.from_seed(text, self.storage) - wallet.save_seed(text, password) + wallet.add_seed(text, password) wallet.create_accounts(password) elif Wallet.is_mpk(text): wallet = Wallet.from_mpk(text, self.storage)