Browse Source

increase frontier blocktime to 13s

cl-refactor
CJentzsch 9 years ago
parent
commit
b99e00a572
  1. 2
      libethcore/Common.cpp

2
libethcore/Common.cpp

@ -65,7 +65,7 @@ Network resetNetwork(Network _n)
c_gasLimitBoundDivisor = 1024; c_gasLimitBoundDivisor = 1024;
c_minimumDifficulty = 131072; c_minimumDifficulty = 131072;
c_difficultyBoundDivisor = 2048; c_difficultyBoundDivisor = 2048;
c_durationLimit = c_network == Network::Turbo ? 2 : c_network == Network::Olympic ? 8 : 12; c_durationLimit = c_network == Network::Turbo ? 2 : c_network == Network::Olympic ? 8 : 13;
c_blockReward = c_network == Network::Olympic ? (1500 * finney) : (5 * ether); c_blockReward = c_network == Network::Olympic ? (1500 * finney) : (5 * ether);
return _n; return _n;
} }

Loading…
Cancel
Save