From 9ffc467cb1d229fe97447c6c7168265acff434e1 Mon Sep 17 00:00:00 2001 From: Gustav Simonsson Date: Fri, 24 Jul 2015 12:02:10 +0200 Subject: [PATCH] Set durationLimit to 13s (targets 15s) --- params/protocol_params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params/protocol_params.go b/params/protocol_params.go index ae64c46c47..24c6bdd05e 100755 --- a/params/protocol_params.go +++ b/params/protocol_params.go @@ -33,7 +33,7 @@ var ( DifficultyBoundDivisor = big.NewInt(2048) // The bound divisor of the difficulty, used in the update calculations. QuadCoeffDiv = big.NewInt(512) // Divisor for the quadratic particle of the memory cost equation. GenesisDifficulty = big.NewInt(131072) // Difficulty of the Genesis block. - DurationLimit = big.NewInt(8) // The decision boundary on the blocktime duration used to determine whether difficulty should go up or not. + DurationLimit = big.NewInt(13) // The decision boundary on the blocktime duration used to determine whether difficulty should go up or not. SstoreSetGas = big.NewInt(20000) // Once per SLOAD operation. LogDataGas = big.NewInt(8) // Per byte in a LOG* operation's data. CallStipend = big.NewInt(2300) // Free gas given at beginning of call.