From c30a81b69283f2aafd1a283a7d86f5787b2cf6d9 Mon Sep 17 00:00:00 2001 From: lukewarm Date: Sun, 13 Dec 2015 13:00:21 -0500 Subject: [PATCH] Fix bug in api.get_addresses_details --- blockcypher/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blockcypher/api.py b/blockcypher/api.py index d26bc35..cf4c599 100644 --- a/blockcypher/api.py +++ b/blockcypher/api.py @@ -150,7 +150,7 @@ def get_addresses_details(address_list, coin_symbol='btc', txn_limit=None, api_k cleaned_dict_list = [] for response_dict in r.json(): - cleaned_dict_list.append(_clean_tx(response_dict=r.json())) + cleaned_dict_list.append(_clean_tx(response_dict=response_dict)) return cleaned_dict_list