tfix: create accounts - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 913ef26dd9bdb6222b791ce46eab3672e9ff78df DIR parent cba7a5d68dbd56793b3479e90cae965e1ed224fb HTML Author: ThomasV <thomasv@gitorious> Date: Sun, 13 Apr 2014 18:41:10 +0200 fix: create accounts Diffstat: M electrum | 1 + M gui/qt/installwizard.py | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) --- DIR diff --git a/electrum b/electrum t@@ -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) DIR diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py t@@ -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()