From b78fd6b3b69ef315991b35058af58f0a700090eb Mon Sep 17 00:00:00 2001 From: thomasv Date: Fri, 26 Oct 2012 15:48:57 +0200 Subject: [PATCH] bugfix: address->addr --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 8461860c..99add78e 100644 --- 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]