From b5548fd857d893b2135bd0eaa60421b1c59a853e Mon Sep 17 00:00:00 2001 From: CJentzsch Date: Mon, 27 Jul 2015 10:29:18 +0200 Subject: [PATCH] decrase minblockGasLimit to 5000 for frontier --- libethcore/Common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libethcore/Common.cpp b/libethcore/Common.cpp index b95564b9b..43079fec9 100644 --- a/libethcore/Common.cpp +++ b/libethcore/Common.cpp @@ -61,7 +61,7 @@ Network resetNetwork(Network _n) { c_network = _n; c_maximumExtraDataSize = c_network == Network::Olympic ? 1024 : 32; - c_minGasLimit = c_network == Network::Turbo ? 100000000 : 125000; + c_minGasLimit = c_network == Network::Turbo ? 100000000 : 5000; c_gasLimitBoundDivisor = 1024; c_minimumDifficulty = 131072; c_difficultyBoundDivisor = 2048;