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
The text was updated successfully, but these errors were encountered:
zeroFruit
changed the title
id field of JSON-RPC response value is different with request value
id field of JSON-RPC response value is different from request value
Jul 18, 2020
Thank you for the report! This could be solved by simply updating jsonrpc references. But it isn't that simple now - we are too far beyond master oof a lot of crates + some crates are obsolete and we should switch to some others :/ As a workaround, you may use this branch - it fixes your problem. Me or someone else will try to look at updating dependencies at some point in the future.
I found that the id field of response value of JSON-RPC is different from id value of request.
Request
Response
Problem
The value is same but type is different
FYI
"id": 1
➡️ res:"id": 1
This works."id": "foo"
➡️ res:"id": "foo"
This worksThe text was updated successfully, but these errors were encountered: