Update protocol_params.go

This commit is contained in:
etherinc 2018-02-12 05:29:51 +05:30 committed by GitHub
parent 19d3a76033
commit 571e66024a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,5 +83,5 @@ var (
DifficultyBoundDivisor = big.NewInt(2048) // The bound divisor of the difficulty, used in the update calculations. DifficultyBoundDivisor = big.NewInt(2048) // The bound divisor of the difficulty, used in the update calculations.
GenesisDifficulty = big.NewInt(131072) // Difficulty of the Genesis block. GenesisDifficulty = big.NewInt(131072) // Difficulty of the Genesis block.
MinimumDifficulty = big.NewInt(131072) // The minimum that the difficulty may ever be. MinimumDifficulty = big.NewInt(131072) // The minimum that the difficulty may ever be.
DurationLimit = big.NewInt(13) // The decision boundary on the blocktime duration used to determine whether difficulty should go up or not. DurationLimit = big.NewInt(4) // The decision boundary on the blocktime duration used to determine whether difficulty should go up or not.
) )