Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"jsonrpc": "2.0",
"id": 67,
"error": {
"code": -32001,
"message": "Payload does not exist / is not available"
"code": -38001,
"message": "Unknown payload"
}
},
"statusCode": 200
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public enum RpcErrorType implements RpcMethodError {
EXECUTION_HALTED(-32000, "Transaction processing could not be completed due to an exception"),

// Execution engine failures
UNKNOWN_PAYLOAD(-32001, "Payload does not exist / is not available"),
UNKNOWN_PAYLOAD(-38001, "Unknown payload"),
INVALID_TERMINAL_BLOCK(-32002, "Terminal block doesn't satisfy terminal block conditions"),
INVALID_FORKCHOICE_STATE(-38002, "Invalid forkchoice state"),
INVALID_PAYLOAD_ATTRIBUTES(-38003, "Invalid payload attributes"),
Expand Down
Loading