Skip to content

Commit

Permalink
Fix bug in api.get_addresses_details
Browse files Browse the repository at this point in the history
  • Loading branch information
lukewarm committed Dec 13, 2015
1 parent 7e42ad7 commit c30a81b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blockcypher/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit c30a81b

Please sign in to comment.