From 88125d8bd00759bdce319b5cb0e8db0d9223962f Mon Sep 17 00:00:00 2001 From: Ev Date: Mon, 8 Jun 2020 03:53:56 -0400 Subject: [PATCH] core: fix typo in comments (#21181) --- core/forkid/forkid.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/forkid/forkid.go b/core/forkid/forkid.go index 08a948510c..b8d670f399 100644 --- a/core/forkid/forkid.go +++ b/core/forkid/forkid.go @@ -235,7 +235,7 @@ func gatherForks(config *params.ChainConfig) []uint64 { forks = append(forks, rule.Uint64()) } } - // Sort the fork block numbers to permit chronologival XOR + // Sort the fork block numbers to permit chronological XOR for i := 0; i < len(forks); i++ { for j := i + 1; j < len(forks); j++ { if forks[i] > forks[j] {