check seed_version is not too high

This commit is contained in:
ThomasV 2017-10-27 16:26:01 +02:00
parent e9f7429fcd
commit e607a499c1
1 changed files with 2 additions and 0 deletions

View File

@ -453,6 +453,8 @@ class WalletStorage(PrintError):
seed_version = self.get('seed_version')
if not seed_version:
seed_version = OLD_SEED_VERSION if len(self.get('master_public_key','')) == 128 else NEW_SEED_VERSION
if seed_version > FINAL_SEED_VERSION:
raise BaseException('This version of Electrum is too old to open this wallet')
if seed_version==14 and self.get('seed_type') == 'segwit':
self.raise_unsupported_version(seed_version)
if seed_version >=12: