Skip to content

Commit

Permalink
consensus/ethash: fixed typo (ethereum#16253)
Browse files Browse the repository at this point in the history
  • Loading branch information
wraith7 authored and karalabe committed Mar 5, 2018
1 parent 0b814d3 commit d429a92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion consensus/ethash/consensus.go
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ func calcDifficultyByzantium(time uint64, parent *types.Header) *big.Int {
if x.Cmp(params.MinimumDifficulty) < 0 {
x.Set(params.MinimumDifficulty)
}
// calculate a fake block numer for the ice-age delay:
// calculate a fake block number for the ice-age delay:
// https://github.com/ethereum/EIPs/pull/669
// fake_block_number = min(0, block.number - 3_000_000
fakeBlockNumber := new(big.Int)
Expand Down

0 comments on commit d429a92

Please sign in to comment.