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
According to https://www.jsonrpc.org/specification#parameter_structures:
-32000 to -32099 | Server error | Reserved for implementation-defined server-errors.
/// Oversized response error code. pub const OVERSIZED_RESPONSE_CODE: i32 = -32702; /// Server is busy error code. pub const SERVER_IS_BUSY_CODE: i32 = -32604;
I guess the two errors are customer server errors and the error codes should be one of the -32000 to -32099?
-32000 to -32099
The text was updated successfully, but these errors were encountered:
Yupp, you are right.
Not sure, how we argued (application specific vs server specific) about that previously but let's change those within the -32000 to -32099 range.
Sorry, something went wrong.
Fine. I would like to raise a pull request to adjust it.
Successfully merging a pull request may close this issue.
According to https://www.jsonrpc.org/specification#parameter_structures:
I guess the two errors are customer server errors and the error codes should be one of the
-32000 to -32099
?The text was updated successfully, but these errors were encountered: