Unverified Commit 88125d8b authored by Ev's avatar Ev Committed by GitHub

core: fix typo in comments (#21181)

parent 55f30db0
......@@ -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] {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment