We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
AcalaNetwork/subway#119
Bodhi will return invalid params, maybe we need to make it return method not found like eth
The text was updated successfully, but these errors were encountered:
input
{ "jsonrpc":"2.0","id": 2, "method": "eth_subscribe", "params": ["nonono"] }
current output
{ "id": 2, "jsonrpc": "2.0", "error": { "code": -32602, "message": "invalid argument 0: expected eventName `newHeads`, `newFinalizedHeads` or `logs`" } }
expected output
{ "jsonrpc": "2.0", "error": { "code": -32601, "message": "no \"nonono\" subscription in eth namespace" }, "id": 2 }
Sorry, something went wrong.
No branches or pull requests
AcalaNetwork/subway#119
Bodhi will return invalid params, maybe we need to make it return method not found like eth
The text was updated successfully, but these errors were encountered: