quorum/pow/ezp/pow.go

100 lines
1.9 KiB
Go
Raw Normal View History

2014-12-10 07:45:16 -08:00
package ezp
import (
2015-03-03 12:04:31 -08:00
"encoding/binary"
2014-12-10 07:45:16 -08:00
"math/big"
"math/rand"
"time"
2015-03-16 03:27:38 -07:00
"github.com/ethereum/go-ethereum/common"
2015-03-17 04:01:21 -07:00
"github.com/ethereum/go-ethereum/crypto/sha3"
2014-12-10 07:45:16 -08:00
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/pow"
)
var powlogger = logger.NewLogger("POW")
type EasyPow struct {
hash *big.Int
HashRate int64
turbo bool
}
func New() *EasyPow {
2015-02-20 09:06:45 -08:00
return &EasyPow{turbo: false}
2014-12-10 07:45:16 -08:00
}
func (pow *EasyPow) GetHashrate() int64 {
return pow.HashRate
}
func (pow *EasyPow) Turbo(on bool) {
pow.turbo = on
}
2015-03-03 12:04:31 -08:00
func (pow *EasyPow) Search(block pow.Block, stop <-chan struct{}) (uint64, []byte, []byte) {
2014-12-10 07:45:16 -08:00
r := rand.New(rand.NewSource(time.Now().UnixNano()))
hash := block.HashNoNonce()
diff := block.Difficulty()
2015-02-09 07:20:34 -08:00
//i := int64(0)
// TODO fix offset
i := rand.Int63()
starti := i
2014-12-10 07:45:16 -08:00
start := time.Now().UnixNano()
2015-02-09 07:20:34 -08:00
defer func() { pow.HashRate = 0 }()
2015-02-09 07:20:34 -08:00
// Make sure stop is empty
empty:
for {
select {
case <-stop:
default:
break empty
}
}
2014-12-10 07:45:16 -08:00
for {
select {
case <-stop:
2015-03-03 12:04:31 -08:00
return 0, nil, nil
2014-12-10 07:45:16 -08:00
default:
i++
2015-02-09 07:20:34 -08:00
elapsed := time.Now().UnixNano() - start
hashes := ((float64(1e9) / float64(elapsed)) * float64(i-starti)) / 1000
pow.HashRate = int64(hashes)
2014-12-10 07:45:16 -08:00
2015-03-03 12:04:31 -08:00
sha := uint64(r.Int63())
2014-12-15 02:37:23 -08:00
if verify(hash, diff, sha) {
2015-02-28 11:58:37 -08:00
return sha, nil, nil
2014-12-10 07:45:16 -08:00
}
}
if !pow.turbo {
time.Sleep(20 * time.Microsecond)
}
}
2015-03-03 12:04:31 -08:00
return 0, nil, nil
2014-12-10 07:45:16 -08:00
}
2014-12-15 02:37:23 -08:00
func (pow *EasyPow) Verify(block pow.Block) bool {
return Verify(block)
}
2015-03-17 04:01:21 -07:00
func verify(hash common.Hash, diff *big.Int, nonce uint64) bool {
2014-12-10 07:45:16 -08:00
sha := sha3.NewKeccak256()
2015-03-03 12:04:31 -08:00
n := make([]byte, 8)
binary.PutUvarint(n, nonce)
2015-03-17 04:01:21 -07:00
sha.Write(n)
sha.Write(hash[:])
2015-03-16 03:27:38 -07:00
verification := new(big.Int).Div(common.BigPow(2, 256), diff)
res := common.BigD(sha.Sum(nil))
2014-12-10 07:45:16 -08:00
return res.Cmp(verification) <= 0
}
2014-12-15 02:37:23 -08:00
func Verify(block pow.Block) bool {
2015-02-27 12:59:33 -08:00
return verify(block.HashNoNonce(), block.Difficulty(), block.Nonce())
2014-12-10 07:45:16 -08:00
}