From 0ad188cf39a838c921e1944033729bf6825838a7 Mon Sep 17 00:00:00 2001 From: wit Date: Sun, 9 Nov 2025 10:06:39 +0800 Subject: [PATCH] beacon: error strings should not be capitalized --- beacon/light/api/light_api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon/light/api/light_api.go b/beacon/light/api/light_api.go index f9a5aae153..914c56534e 100755 --- a/beacon/light/api/light_api.go +++ b/beacon/light/api/light_api.go @@ -411,7 +411,7 @@ func (api *BeaconLightApi) GetBeaconBlock(blockRoot common.Hash) (*types.BeaconB } computedRoot := block.Root() if computedRoot != blockRoot { - return nil, fmt.Errorf("Beacon block root hash mismatch (expected: %x, got: %x)", blockRoot, computedRoot) + return nil, fmt.Errorf("beacon block root hash mismatch (expected: %x, got: %x)", blockRoot, computedRoot) } return block, nil }