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
pubenumRPCErrorCode{// Standard JSON-RPC 2.0 errors// RPC_INVALID_REQUEST is internally mapped to HTTP_BAD_REQUEST (400).// It should not be used for application-layer errors.RpcInvalidRequest = -32600,// RPC_METHOD_NOT_FOUND is internally mapped to HTTP_NOT_FOUND (404).// It should not be used for application-layer errors.RpcMethodNotFound = -32601,RpcInvalidParams = -32602,// RPC_INTERNAL_ERROR should only be used for genuine errors in bitcoind// (for example datadir corruption).RpcInternalError = -32603,RpcParseError = -32700,// General application defined errorsRpcMiscError = -1,// std::exception thrown in command handlingRpcTypeError = -3,// Unexpected type was passed as parameterRpcInvalidAddressOrKey = -5,// Invalid address or keyRpcInvalidParameter = -8,// Invalid, missing or duplicate parameterRpcDatabaseError = -20,// Database errorRpcDeserializationError = -22,// Error parsing or validating structure in raw formatRpcVerifyError = -25,// General error during transaction or block submissionRpcVerifyRejected = -26,// Transaction or block was rejected by network rulesRpcInWarmup = -28,// Client still warming upRpcMethodDeprecated = -32,// RPC method is deprecated}
Is not used anywhere? Do we have any use case for it?
The text was updated successfully, but these errors were encountered:
Is not used anywhere? Do we have any use case for it?
The text was updated successfully, but these errors were encountered: