From be2b0501b5832c0b49f07cdf2db597cc34450199 Mon Sep 17 00:00:00 2001
From: obscuren <geffobscura@gmail.com>
Date: Wed, 27 May 2015 01:52:03 +0200
Subject: core: block.gasLimit - parent.gasLimit <= parent.gasLimit /
 GasLimitBoundDivisor

---
 core/block_processor.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/block_processor.go b/core/block_processor.go
index 037782407..e808c03da 100644
--- a/core/block_processor.go
+++ b/core/block_processor.go
@@ -302,7 +302,7 @@ func (sm *BlockProcessor) ValidateHeader(block, parent *types.Header, checkPow b
 	a := new(big.Int).Sub(block.GasLimit, parent.GasLimit)
 	a.Abs(a)
 	b := new(big.Int).Div(parent.GasLimit, params.GasLimitBoundDivisor)
-	if !(a.Cmp(b) < 0) || (block.GasLimit.Cmp(params.MinGasLimit) == -1) {
+	if !(a.Cmp(b) <= 0) || (block.GasLimit.Cmp(params.MinGasLimit) == -1) {
 		return fmt.Errorf("GasLimit check failed for block %v (%v > %v)", block.GasLimit, a, b)
 	}
 
-- 
cgit v1.2.3