From e219c1b761a59201d6ba255baa02746b10b955a1 Mon Sep 17 00:00:00 2001 From: thomasv Date: Wed, 11 Jan 2012 17:35:58 +0100 Subject: [PATCH] fix var name --- client/electrum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/electrum.py b/client/electrum.py index e36b33647..6b1b34eb3 100755 --- a/client/electrum.py +++ b/client/electrum.py @@ -259,7 +259,7 @@ class Interface: def retrieve_history(self, address): if self.use_http(): - out = self.http_json_server.blockchain.address.get_history(params) + out = self.http_json_server.blockchain.address.get_history(address) else: out = ast.literal_eval( self.request( repr ( ('h', address ))) ) return out