1
0

wallet: call create_accounts in save_seed

This commit is contained in:
ThomasV
2013-11-11 17:41:46 +01:00
parent ee141f6d37
commit 588f8fd110
5 changed files with 3 additions and 11 deletions

View File

@@ -904,7 +904,6 @@ class ElectrumGui:
wallet.init_seed(None)
self.show_seed()
wallet.save_seed()
wallet.create_accounts()
wallet.synchronize() # generate first addresses offline
elif action == 'restore':

View File

@@ -1313,7 +1313,6 @@ class ElectrumGui():
if action == 'create':
wallet.init_seed(None)
wallet.save_seed()
wallet.create_accounts()
wallet.synchronize() # generate first addresses offline
elif action == 'restore':
seed = self.seed_dialog()

View File

@@ -271,7 +271,6 @@ class InstallWizard(QDialog):
if self.verify_seed(wallet):
def create():
wallet.save_seed()
wallet.create_accounts()
wallet.synchronize() # generate first addresses offline
self.waiting_dialog(create)
else:
@@ -300,7 +299,6 @@ class InstallWizard(QDialog):
wallet.seed = ''
wallet.create_watching_only_wallet(mpk)
else: raise
#if not self.config.get('server'):