diff options
author | obscuren <geffobscura@gmail.com> | 2015-02-05 10:34:29 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-02-05 10:34:29 +0800 |
commit | db7c34a9df19d5a8a3a02a5e3d4cafcffa18dcb8 (patch) | |
tree | b7b5ea745d208d5222c1562796538acdea32580f /pow | |
parent | a1b4547a53c4c738e435c1968c1e606935912e47 (diff) | |
download | go-tangerine-db7c34a9df19d5a8a3a02a5e3d4cafcffa18dcb8.tar.gz go-tangerine-db7c34a9df19d5a8a3a02a5e3d4cafcffa18dcb8.tar.zst go-tangerine-db7c34a9df19d5a8a3a02a5e3d4cafcffa18dcb8.zip |
Default gas price and default gas for rpc
Diffstat (limited to 'pow')
-rw-r--r-- | pow/ezp/pow.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pow/ezp/pow.go b/pow/ezp/pow.go index 2791c4b0b..e4caa076a 100644 --- a/pow/ezp/pow.go +++ b/pow/ezp/pow.go @@ -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 } } |