Add missing encryption in private key import (issue #1966). Allow key overwrite in order to fix affected wallets

This commit is contained in:
ThomasV 2016-10-12 09:31:58 +02:00
parent c4c2203caa
commit f4d5efbf3b
1 changed files with 2 additions and 5 deletions

View File

@ -141,15 +141,12 @@ class Imported_KeyStore(Software_KeyStore):
self.get_private_key((0,0), password)
def import_key(self, sec, password):
if not self.can_import():
raise BaseException('This wallet cannot import private keys')
try:
pubkey = public_key_from_private_key(sec)
except Exception:
raise BaseException('Invalid private key')
if pubkey in self.keypairs:
raise BaseException('Private key already in keystore')
self.keypairs[pubkey] = sec
# allow overwrite
self.keypairs[pubkey] = pw_encode(sec, password)
self.receiving_pubkeys = self.keypairs.keys()
return pubkey