fix creation of imported keystore

This commit is contained in:
ThomasV 2016-10-08 20:30:56 +02:00
parent bb0ddcecd0
commit 357cc75dca
1 changed files with 1 additions and 0 deletions

View File

@ -150,6 +150,7 @@ class Imported_KeyStore(Software_KeyStore):
if pubkey in self.keypairs:
raise BaseException('Private key already in keystore')
self.keypairs[pubkey] = sec
self.receiving_pubkeys = self.keypairs.keys()
return pubkey
def delete_imported_key(self, key):