浏览代码

core: fix typo in comments (#21181)

Ev 5 年之前
父节点
当前提交
88125d8bd0
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/forkid/forkid.go

+ 1 - 1
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] {