forked from cerc-io/plugeth
changed message
This commit is contained in:
parent
ee0a1bec6c
commit
b0aaa77f02
@ -253,7 +253,7 @@ func (sm *BlockProcessor) ValidateBlock(block, parent *types.Block) error {
|
|||||||
a := new(big.Int).Sub(block.Header().GasLimit, parent.Header().GasLimit)
|
a := new(big.Int).Sub(block.Header().GasLimit, parent.Header().GasLimit)
|
||||||
b := new(big.Int).Div(parent.Header().GasLimit, big.NewInt(1024))
|
b := new(big.Int).Div(parent.Header().GasLimit, big.NewInt(1024))
|
||||||
if a.Cmp(b) > 0 {
|
if a.Cmp(b) > 0 {
|
||||||
return fmt.Errorf("GasLimit check failed for block %v", block.Header().GasLimit)
|
return fmt.Errorf("GasLimit check failed for block %v (%v > %v)", block.Header().GasLimit, a, b)
|
||||||
}
|
}
|
||||||
|
|
||||||
if block.Time() < parent.Time() {
|
if block.Time() < parent.Time() {
|
||||||
|
Loading…
Reference in New Issue
Block a user