aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/block.go
diff options
context:
space:
mode:
authorMaran <maran.hidskes@gmail.com>2014-07-01 21:25:57 +0800
committerMaran <maran.hidskes@gmail.com>2014-07-01 21:25:57 +0800
commite798294a4b2049dc59df6ad4a3bc67c00916cb9f (patch)
tree0f8b873feb2f0f4893970f4ce6c05220051e4e78 /ethchain/block.go
parent2bbc204328cf674e8ccd591bb4d08179225b396a (diff)
downloadgo-tangerine-e798294a4b2049dc59df6ad4a3bc67c00916cb9f.tar
go-tangerine-e798294a4b2049dc59df6ad4a3bc67c00916cb9f.tar.gz
go-tangerine-e798294a4b2049dc59df6ad4a3bc67c00916cb9f.tar.bz2
go-tangerine-e798294a4b2049dc59df6ad4a3bc67c00916cb9f.tar.lz
go-tangerine-e798294a4b2049dc59df6ad4a3bc67c00916cb9f.tar.xz
go-tangerine-e798294a4b2049dc59df6ad4a3bc67c00916cb9f.tar.zst
go-tangerine-e798294a4b2049dc59df6ad4a3bc67c00916cb9f.zip
Update min GasLimit
Diffstat (limited to 'ethchain/block.go')
-rw-r--r--ethchain/block.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/block.go b/ethchain/block.go
index fee4a2d59..1be8282fa 100644
--- a/ethchain/block.go
+++ b/ethchain/block.go
@@ -166,7 +166,7 @@ func (block *Block) CalcGasLimit(parent *Block) *big.Int {
result := new(big.Int).Add(previous, curInt)
result.Div(result, big.NewInt(1024))
- min := ethutil.BigPow(10, 4)
+ min := big.NewInt(125000)
return ethutil.BigMax(min, result)
/*