Skip to content

Commit

Permalink
core: fix typo in comments (ethereum#21181)
Browse files Browse the repository at this point in the history
  • Loading branch information
evertonfraga authored Jun 8, 2020
1 parent 55f30db commit 88125d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/forkid/forkid.go
Original file line number Diff line number Diff line change
Expand Up @@ -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] {
Expand Down

0 comments on commit 88125d8

Please sign in to comment.