electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 357cc75dcae6a96e6cfd569f098ac7c127cebf7c
parent bb0ddcecd027be04180e301a2cdf93fe06b3da21
Author: ThomasV <thomasv@electrum.org>
Date:   Sat,  8 Oct 2016 20:30:56 +0200

fix creation of imported keystore

Diffstat:
Mlib/keystore.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/lib/keystore.py b/lib/keystore.py @@ -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):