Increased genesis gas & gas floor limit to 3141592

This commit is contained in:
obscuren
2015-03-13 13:52:23 +01:00
parent f76cc6699e
commit e69d5b32e8
2 changed files with 3 additions and 4 deletions

View File

@ -68,9 +68,7 @@ func CalcGasLimit(parent, block *types.Block) *big.Int {
result := new(big.Int).Add(previous, curInt)
result.Div(result, big.NewInt(1024))
min := big.NewInt(125000)
return ethutil.BigMax(min, result)
return ethutil.BigMax(GenesisGasLimit, result)
}
type ChainManager struct {