URI: 
       tfix creation of imported keystore - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 357cc75dcae6a96e6cfd569f098ac7c127cebf7c
   DIR parent bb0ddcecd027be04180e301a2cdf93fe06b3da21
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Sat,  8 Oct 2016 20:30:56 +0200
       
       fix creation of imported keystore
       
       Diffstat:
         M lib/keystore.py                     |       1 +
       
       1 file changed, 1 insertion(+), 0 deletions(-)
       ---
   DIR diff --git a/lib/keystore.py b/lib/keystore.py
       t@@ -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):