electrum

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

commit f86e11b4458051deb6004dfe04cad2cd6321fe15
parent 34be8520619269fe01890c79c2116815065d924f
Author: thomasv <thomasv@gitorious>
Date:   Thu,  7 Jun 2012 11:21:53 +0200

unprioritize before freeze

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

diff --git a/lib/wallet.py b/lib/wallet.py @@ -997,6 +997,7 @@ class Wallet: def freeze(self,addr): if addr in self.all_addresses() and addr not in self.frozen_addresses: + self.unprioritize(addr) self.frozen_addresses.append(addr) self.save() return True