From 5acf5297491bee27cfc8e1ab53d509466192cae9 Mon Sep 17 00:00:00 2001 From: rizkyikiw42 Date: Tue, 4 Nov 2025 14:29:07 +0800 Subject: [PATCH] beacon/engine: remove unused var --- beacon/engine/errors.go | 1 - 1 file changed, 1 deletion(-) diff --git a/beacon/engine/errors.go b/beacon/engine/errors.go index 62773a0ea9..3eabbf6d59 100644 --- a/beacon/engine/errors.go +++ b/beacon/engine/errors.go @@ -74,7 +74,6 @@ var ( // - newPayloadV1: if the payload was accepted, but not processed (side chain) ACCEPTED = "ACCEPTED" - GenericServerError = &EngineAPIError{code: -32000, msg: "Server error"} UnknownPayload = &EngineAPIError{code: -38001, msg: "Unknown payload"} InvalidForkChoiceState = &EngineAPIError{code: -38002, msg: "Invalid forkchoice state"} InvalidPayloadAttributes = &EngineAPIError{code: -38003, msg: "Invalid payload attributes"}