Make variable name to match comments

This commit is contained in:
r4h 2024-10-25 23:49:31 +08:00
parent 80bdab757d
commit 72d55ffd57

View file

@ -30,9 +30,9 @@ const (
frontierDurationLimit = 13 frontierDurationLimit = 13
// minimumDifficulty The minimum that the difficulty may ever be. // minimumDifficulty The minimum that the difficulty may ever be.
minimumDifficulty = 131072 minimumDifficulty = 131072
// expDiffPeriod is the exponential difficulty period // expDiffPeriodUint is the exponential difficulty period
expDiffPeriodUint = 100000 expDiffPeriodUint = 100000
// difficultyBoundDivisorBitShift is the bound divisor of the difficulty (2048), // difficultyBoundDivisor is the bound divisor of the difficulty (2048),
// This constant is the right-shifts to use for the division. // This constant is the right-shifts to use for the division.
difficultyBoundDivisor = 11 difficultyBoundDivisor = 11
) )