-
Notifications
You must be signed in to change notification settings - Fork 465
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
Receipt could not be found when calling trace_transaction #5936
Comments
On Do you have your client fully synced in? What CL are you using alongside Nethermind? |
Yes @emlautarom1 , we have a Nethermind client fully synced and as CL we are using Lighthouse v4.3.0 Yesterday after opening the issue we upgraded from v1.19.3 to v1.20.0, but same issue around |
I'm able to reproduce the issue with the following flags: Could you please list the flags that you're using with Nethermind? |
@Uxio0 @luarx looks like by some unforeseen circumstance your receipt DB got corrupted (it is also where we keep tx hash->blok number index). I think best way to proceed is to try running a process that will scan all receipts and download any missing from the network. You can run it by restarting the node with the flag In some time it should scan through all receipts and download missing ones. It should output logs for every block with missing receipt it finds. |
ok @LukaszRozmej ! We enable this flag |
After running the node with the flag everything is working as expected. We are still worried about how multiple nodes got into that state, though Thank you very much @LukaszRozmej |
Description
Receipt could not be found when calling
trace_transaction
Steps to Reproduce
Send this payload to the RPC
{'id': 0, 'jsonrpc': '2.0', 'method': 'trace_transaction', 'params': ['0x78738a28e62b9ab4250b0fa3baaaa93961b2d657ae17fb9e4adb49cebde7b350']}
Actual behavior
We receive:
{'jsonrpc': '2.0', 'error': {'code': -32001, 'message': '0x78738a28e62b9ab4250b0fa3baaaa93961b2d657ae17fb9e4adb49cebde7b350 receipt could not be found'}, 'id': 0}
Expected behavior
Get traces for transaction: https://gnosisscan.io/tx/0x78738a28e62b9ab4250b0fa3baaaa93961b2d657ae17fb9e4adb49cebde7b350
Additional context
Nethermind version: v1.19.3
Chain: Gnosis Chain
The text was updated successfully, but these errors were encountered: