-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
inconsistent return on gettransactioninfobyid #8
Comments
Hello, we are still having this issue, could anybody help us? |
One of the members of the Telegram Dev Channels responded as:
Hope this helps. Did u come around with some other solution BTW? |
Status code 503 for a rate-limit is nonsense. It should be 409. Anyways we sorted this out by stopping receiving TRON via smart contract execution. Before, as soon we found a new block, we went through all transactions and checked if it was The optimal way of doing this anyway, that almost all other blockchains support is getting everything in a single call for each block. For example, on Ethereum, we get all normal transactions & smart contract transactions (aka. Internal Transactions), with the trace_block RPC method, and finally, all tokens transfer with get_logs (that way, for checking if any transactions arrive, we have to call 2 queries per block, instead of having to call per transaction. |
Hello,
On my application I'm getting very inconsistent results on the mentioned method, executed as follows:
Results vary from Status 503 (many of the times), this response:
and this response (The correct one):
What could be going wrong? we are having difficulties receiving transactions because of this, and we are spending lots of resources to manually check on tronscan for incoming transactions. Help is very much appreciated.
Thanks, Joaquin
The text was updated successfully, but these errors were encountered: