Open rickyktan opened 6 years ago
This will be fixed by #8 . I'll be working on this soon as I've picked this project up as part of another project I'm working on.
any updates on this? ran into the same problem. guess the solution is quite simple by changing line 92ff in accounts.py
to something like
try:
req = self.connect()
except EmptyResponse:
print(
"Total number of transactions: {}".format(len(trans_list)))
self.page = ''
return trans_list
Was out of town on holiday. Will pick this back up this week.
Problem still not solved:
raise EmptyResponse(data.get('message', 'no message')) etherscan.client.EmptyResponse: <Err: No transactions found>
I have been trying to collect and plot all contributions that were sent to a crowdsale address (ZRX as example)
Sending a request using get_all_transactions function seems to be working (i.e. transactions are added and pages are being counted and added) until the Etherscan API returns the page with an empty response
{"status":"0","message":"No transactions found","result":[]}
This triggers an error in the connect function