Fix compare

This commit is contained in:
Maran 2014-06-11 16:16:57 +02:00
parent 71ab5d52b6
commit 1938bfcddf
1 changed files with 2 additions and 1 deletions

View File

@ -155,9 +155,10 @@ func (block *Block) PayFee(addr []byte, fee *big.Int) bool {
}
func (block *Block) CalcGasLimit(parent *Block) *big.Int {
if block.Number == big.NewInt(0) {
if block.Number.Cmp(big.NewInt(0)) == 0 {
return ethutil.BigPow(10, 6)
}
previous := new(big.Int).Mul(big.NewInt(1023), parent.GasLimit)
current := new(big.Rat).Mul(new(big.Rat).SetInt(block.GasUsed), big.NewRat(6, 5))
curInt := new(big.Int).Div(current.Num(), current.Denom())