mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 13:46:43 +00:00
Update errors.go
This commit is contained in:
parent
0f9b6ef4f1
commit
46a8449b6f
1 changed files with 3 additions and 3 deletions
|
|
@ -57,17 +57,17 @@ var (
|
||||||
var (
|
var (
|
||||||
// VALID is returned by the engine API in the following calls:
|
// VALID is returned by the engine API in the following calls:
|
||||||
// - newPayloadV1: if the payload was already known or was just validated and executed
|
// - newPayloadV1: if the payload was already known or was just validated and executed
|
||||||
// - forkchoiceUpdateV1: if the chain accepted the reorg (might ignore if it's stale)
|
// - forkchoiceUpdatedV1: if the chain accepted the reorg (might ignore if it's stale)
|
||||||
VALID = "VALID"
|
VALID = "VALID"
|
||||||
|
|
||||||
// INVALID is returned by the engine API in the following calls:
|
// INVALID is returned by the engine API in the following calls:
|
||||||
// - newPayloadV1: if the payload failed to execute on top of the local chain
|
// - newPayloadV1: if the payload failed to execute on top of the local chain
|
||||||
// - forkchoiceUpdateV1: if the new head is unknown, pre-merge, or reorg to it fails
|
// - forkchoiceUpdatedV1: if the new head is unknown, pre-merge, or reorg to it fails
|
||||||
INVALID = "INVALID"
|
INVALID = "INVALID"
|
||||||
|
|
||||||
// SYNCING is returned by the engine API in the following calls:
|
// SYNCING is returned by the engine API in the following calls:
|
||||||
// - newPayloadV1: if the payload was accepted on top of an active sync
|
// - newPayloadV1: if the payload was accepted on top of an active sync
|
||||||
// - forkchoiceUpdateV1: if the new head was seen before, but not part of the chain
|
// - forkchoiceUpdatedV1: if the new head was seen before, but not part of the chain
|
||||||
SYNCING = "SYNCING"
|
SYNCING = "SYNCING"
|
||||||
|
|
||||||
// ACCEPTED is returned by the engine API in the following calls:
|
// ACCEPTED is returned by the engine API in the following calls:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue