core/evm: fix error in comment (#25040)

Co-authored-by: Martin Holst Swende <martin@swende.se>
This commit is contained in:
int88 2022-06-09 00:40:37 +08:00 committed by GitHub
parent f5037185aa
commit 594e321662
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 the hash/number argument pair.
GetHeader(common.Hash, uint64) *types.Header
}