mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-01 09:45:18 +00:00
fix: create accounts
This commit is contained in:
parent
cba7a5d68d
commit
913ef26dd9
2 changed files with 2 additions and 0 deletions
1
electrum
1
electrum
|
@ -254,6 +254,7 @@ if __name__ == '__main__':
|
||||||
if not wallet:
|
if not wallet:
|
||||||
sys.exit("Error: Invalid seed")
|
sys.exit("Error: Invalid seed")
|
||||||
wallet.save_seed(password)
|
wallet.save_seed(password)
|
||||||
|
wallet.create_accounts(password)
|
||||||
|
|
||||||
if not options.offline:
|
if not options.offline:
|
||||||
network = Network(config)
|
network = Network(config)
|
||||||
|
|
|
@ -353,6 +353,7 @@ class InstallWizard(QDialog):
|
||||||
wallet = Wallet.from_seed(seed, self.storage)
|
wallet = Wallet.from_seed(seed, self.storage)
|
||||||
ok, old_password, password = self.password_dialog(wallet)
|
ok, old_password, password = self.password_dialog(wallet)
|
||||||
wallet.save_seed(password)
|
wallet.save_seed(password)
|
||||||
|
wallet.create_accounts(password)
|
||||||
|
|
||||||
elif action == 'watching':
|
elif action == 'watching':
|
||||||
mpk = self.mpk_dialog()
|
mpk = self.mpk_dialog()
|
||||||
|
|
Loading…
Add table
Reference in a new issue