1
0

seed_v9: strip whitespaces before hashing

This commit is contained in:
ThomasV
2014-09-11 15:15:50 +02:00
parent f3e2e7b501
commit 43513adb5c
3 changed files with 10 additions and 11 deletions

View File

@@ -1614,7 +1614,7 @@ class Wallet(object):
if seed_version not in [OLD_SEED_VERSION, NEW_SEED_VERSION]:
msg = "This wallet seed is not supported anymore."
if seed_version in [5, 7]:
if seed_version in [5, 7, 8]:
msg += "\nTo open this wallet, try 'git checkout seed_v%d'"%seed_version
print msg
sys.exit(1)