strip whitespaces from seed

This commit is contained in:
ThomasV 2014-02-26 16:24:37 +01:00
parent 22408c1316
commit 79309c9625
1 changed files with 3 additions and 1 deletions

View File

@ -1702,8 +1702,10 @@ class OldWallet(Wallet):
self.seed_version = 4
# see if seed was entered as hex
seed = seed.strip()
try:
seed.strip().decode('hex')
assert seed
seed.decode('hex')
self.seed = str(seed)
return
except Exception: