mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 20:56:42 +00:00
beacon/engine: add INCLUSION_LIST_UNSATISFIED to engine API errors
This commit is contained in:
parent
7ce64f1d65
commit
3e487c0a73
1 changed files with 4 additions and 0 deletions
|
|
@ -74,6 +74,10 @@ var (
|
|||
// - newPayloadV1: if the payload was accepted, but not processed (side chain)
|
||||
ACCEPTED = "ACCEPTED"
|
||||
|
||||
// INCLUSION_LIST_UNSATISFIED is returned by the engine API in the following calls:
|
||||
// - newPayloadV5: if the payload failed to satisfy the inclusion list constraints
|
||||
INCLUSION_LIST_UNSATISFIED = "INCLUSION_LIST_UNSATISFIED"
|
||||
|
||||
GenericServerError = &EngineAPIError{code: -32000, msg: "Server error"}
|
||||
UnknownPayload = &EngineAPIError{code: -38001, msg: "Unknown payload"}
|
||||
InvalidForkChoiceState = &EngineAPIError{code: -38002, msg: "Invalid forkchoice state"}
|
||||
|
|
|
|||
Loading…
Reference in a new issue