From fb1070040c7d7e98622190efcbf194057d4061f5 Mon Sep 17 00:00:00 2001 From: Jordan Oroshiba Date: Thu, 19 Oct 2023 16:31:09 -0700 Subject: [PATCH] Update grpc/execution/server.go Co-authored-by: noot <36753753+noot@users.noreply.github.com> --- grpc/execution/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grpc/execution/server.go b/grpc/execution/server.go index 0e999fb47a..e8d6b0281c 100644 --- a/grpc/execution/server.go +++ b/grpc/execution/server.go @@ -319,7 +319,7 @@ func (s *ExecutionServiceServerV1Alpha2) getBlockFromIdentifier(identifier *exec var header *types.Header // Grab the header based on the identifier provided - switch id_type := identifier.Identifier.(type) { + switch idType := identifier.Identifier.(type) { case *executionv1a2.BlockIdentifier_BlockNumber: header = s.bc.GetHeaderByNumber(uint64(identifier.GetBlockNumber())) case *executionv1a2.BlockIdentifier_BlockHash: