electrum

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

commit b78fd6b3b69ef315991b35058af58f0a700090eb
parent b6729b3aab916d6569750619d1595bfe7ed633f6
Author: thomasv <thomasv@gitorious>
Date:   Fri, 26 Oct 2012 15:48:57 +0200

bugfix: address->addr

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

diff --git a/lib/wallet.py b/lib/wallet.py @@ -896,7 +896,7 @@ class WalletSynchronizer(threading.Thread): if method == 'blockchain.address.subscribe': addr = params[0] if self.wallet.get_status(addr) != result: - self.interface.send([('blockchain.address.get_history', [address] )]) + self.interface.send([('blockchain.address.get_history', [addr] )]) elif method == 'blockchain.address.get_history': addr = params[0]