This commit is contained in:
ThomasV 2018-03-12 10:18:09 +01:00
parent a048a00594
commit 0603f9f2b4

View file

@ -164,7 +164,7 @@ class BaseWizard(object):
k = keystore.Imported_KeyStore({})
self.storage.put('keystore', k.dump())
w = Imported_Wallet(self.storage)
for x in text.split():
for x in keystore.get_private_keys(text):
w.import_private_key(x, None)
self.keystores.append(w.keystore)
else: