commit 913ef26dd9bdb6222b791ce46eab3672e9ff78df
parent cba7a5d68dbd56793b3479e90cae965e1ed224fb
Author: ThomasV <thomasv@gitorious>
Date: Sun, 13 Apr 2014 18:41:10 +0200
fix: create accounts
Diffstat:
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/electrum b/electrum
@@ -254,6 +254,7 @@ if __name__ == '__main__':
if not wallet:
sys.exit("Error: Invalid seed")
wallet.save_seed(password)
+ wallet.create_accounts(password)
if not options.offline:
network = Network(config)
diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py
@@ -353,6 +353,7 @@ class InstallWizard(QDialog):
wallet = Wallet.from_seed(seed, self.storage)
ok, old_password, password = self.password_dialog(wallet)
wallet.save_seed(password)
+ wallet.create_accounts(password)
elif action == 'watching':
mpk = self.mpk_dialog()