From 2eb9e5fde22c94b8688e887a0b70f141656630e0 Mon Sep 17 00:00:00 2001 From: int88 Date: Wed, 8 Jun 2022 11:27:06 +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 536ac673e6a6..16e5aac57a78 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 }