fix: create accounts
authorThomasV <thomasv@gitorious>
Sun, 13 Apr 2014 16:41:10 +0000 (18:41 +0200)
committerThomasV <thomasv@gitorious>
Sun, 13 Apr 2014 16:41:10 +0000 (18:41 +0200)
electrum
gui/qt/installwizard.py

index cd6e661..e834e08 100755 (executable)
--- 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)
index 548cb2e..f203b1b 100644 (file)
@@ -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()