Skip to content

Commit 88125d8

Browse files
authored
core: fix typo in comments (#21181)
1 parent 55f30db commit 88125d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/forkid/forkid.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ func gatherForks(config *params.ChainConfig) []uint64 {
235235
forks = append(forks, rule.Uint64())
236236
}
237237
}
238-
// Sort the fork block numbers to permit chronologival XOR
238+
// Sort the fork block numbers to permit chronological XOR
239239
for i := 0; i < len(forks); i++ {
240240
for j := i + 1; j < len(forks); j++ {
241241
if forks[i] > forks[j] {

0 commit comments

Comments
 (0)