You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When requesting the "pending" state with the following command: curl -H "Content-Type: application/json" -X POST --data '{"jsonrpc":"2.0", "method": "eth_getStorageAt", "params": ["0x0000000000000000000000000000000000000000", "0x0", "pending"], "id": 1}' 127.0.0.1:9999
The node panics with the following error:
{"jsonrpc":"2.0","error":{"code":-32603,"message":"Create pending runtime api error: Failed to call runtime API, Execution failed: Runtime panicked: Slot must increase"},"id":1}
If you are building a parachain, you need to ensure that the inherent can be converted to extrinsic successfully; otherwise, this error will be reported. I submitted a patch for the Darwinia chain today: darwinia-network/darwinia#1608 for your reference.
Thanks for the reference @boundless-forest. Even though I have applied your patch, the error persists. It might also be worth mentioning that we haven't activated async backing yet.
Description
When requesting the "pending" state with the following command:
curl -H "Content-Type: application/json" -X POST --data '{"jsonrpc":"2.0", "method": "eth_getStorageAt", "params": ["0x0000000000000000000000000000000000000000", "0x0", "pending"], "id": 1}' 127.0.0.1:9999
The node panics with the following error:
Steps to Reproduce
curl -H "Content-Type: application/json" -X POST --data '{"jsonrpc":"2.0", "method": "eth_getStorageAt", "params": ["0x0000000000000000000000000000000000000000", "0x0", "pending"], "id": 1}' 127.0.0.1:9999
The text was updated successfully, but these errors were encountered: