This commit is contained in:
ThomasV 2017-08-30 06:38:57 +02:00
parent fbe27fce04
commit 1394346192
1 changed files with 1 additions and 1 deletions

View File

@ -706,7 +706,7 @@ def from_seed(seed, passphrase):
def from_private_key_list(text):
keystore = Imported_KeyStore({})
for x in text.split():
for x in get_private_keys(text):
keystore.import_key(x, None)
return keystore