tbugfix: address->addr - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit b78fd6b3b69ef315991b35058af58f0a700090eb DIR parent b6729b3aab916d6569750619d1595bfe7ed633f6 HTML Author: thomasv <thomasv@gitorious> Date: Fri, 26 Oct 2012 15:48:57 +0200 bugfix: address->addr Diffstat: M lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/lib/wallet.py b/lib/wallet.py t@@ -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]