minor fix: convert_wallet_type

This commit is contained in:
ThomasV 2016-08-28 15:37:37 +02:00
parent 87e3db91dd
commit 357ea62303
1 changed files with 2 additions and 2 deletions

View File

@ -221,11 +221,11 @@ class WalletStorage(PrintError):
def convert_wallet_type(self, is_test):
assert not self.requires_split()
if self.get('keystore') or self.get('x1/'):
wallet_type = self.get('wallet_type')
if self.get('keystore') or self.get('x1/') or wallet_type=='imported':
return False
if is_test:
return True
wallet_type = self.get('wallet_type')
seed_version = self.get_seed_version()
seed = self.get('seed')
xpubs = self.get('master_public_keys')