From b088e3e03cf4a10c99b527aa099de03f5fd98787 Mon Sep 17 00:00:00 2001 From: int88 Date: Wed, 8 Jun 2022 11:12:31 +0000 Subject: [PATCH] core/evm: fix error in comment Signed-off-by: int88 --- core/evm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/evm.go b/core/evm.go index 536ac673e6a62..16e5aac57a781 100644 --- a/core/evm.go +++ b/core/evm.go @@ -31,7 +31,7 @@ type ChainContext interface { // Engine retrieves the chain's consensus engine. Engine() consensus.Engine - // GetHeader returns the hash corresponding to their hash. + // GetHeader returns the header corresponding to their hash. GetHeader(common.Hash, uint64) *types.Header }