From a156ab10b5355c9342c158422ae93506f96a7d8d Mon Sep 17 00:00:00 2001 From: lightclient Date: Tue, 13 Feb 2024 06:10:06 -0700 Subject: [PATCH] beacon/engine: make client version data const --- beacon/engine/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon/engine/types.go b/beacon/engine/types.go index 2d516be0c8..60accc3c79 100644 --- a/beacon/engine/types.go +++ b/beacon/engine/types.go @@ -305,7 +305,7 @@ type ExecutionPayloadBodyV1 struct { } // Client identifiers to support ClientVersionV1. -var ( +const ( ClientCode = "GE" ClientName = "go-ethereum" )