Default gas price and default gas for rpc

This commit is contained in:
obscuren
2015-02-04 18:34:29 -08:00
parent a1b4547a53
commit db7c34a9df
4 changed files with 15 additions and 18 deletions

View File

@ -1,7 +1,6 @@
package ezp
import (
"fmt"
"math/big"
"math/rand"
"time"
@ -60,7 +59,6 @@ func (pow *EasyPow) Search(block pow.Block, stop <-chan struct{}) []byte {
sha := crypto.Sha3(big.NewInt(r.Int63()).Bytes())
if verify(hash, diff, sha) {
fmt.Printf("HASH: %x\nDIFF %v\nSHA %x\n", hash, diff, sha)
return sha
}
}