Update min GasLimit

pull/150/head
Maran 11 years ago
parent 2bbc204328
commit e798294a4b
  1. 2
      ethchain/block.go
  2. 1
      ethchain/dagger.go

@ -166,7 +166,7 @@ func (block *Block) CalcGasLimit(parent *Block) *big.Int {
result := new(big.Int).Add(previous, curInt) result := new(big.Int).Add(previous, curInt)
result.Div(result, big.NewInt(1024)) result.Div(result, big.NewInt(1024))
min := ethutil.BigPow(10, 4) min := big.NewInt(125000)
return ethutil.BigMax(min, result) return ethutil.BigMax(min, result)
/* /*

@ -31,6 +31,7 @@ func (pow *EasyPow) Search(block *Block, reactChan chan ethutil.React) []byte {
for { for {
select { select {
case <-reactChan: case <-reactChan:
powlogger.Infoln("Breaking from mining")
return nil return nil
default: default:
i++ i++

Loading…
Cancel
Save