mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-29 08:21:27 +00:00
fix #4108
This commit is contained in:
parent
a048a00594
commit
0603f9f2b4
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ class BaseWizard(object):
|
||||||
k = keystore.Imported_KeyStore({})
|
k = keystore.Imported_KeyStore({})
|
||||||
self.storage.put('keystore', k.dump())
|
self.storage.put('keystore', k.dump())
|
||||||
w = Imported_Wallet(self.storage)
|
w = Imported_Wallet(self.storage)
|
||||||
for x in text.split():
|
for x in keystore.get_private_keys(text):
|
||||||
w.import_private_key(x, None)
|
w.import_private_key(x, None)
|
||||||
self.keystores.append(w.keystore)
|
self.keystores.append(w.keystore)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue