quorum/miner/remote_agent.go

94 lines
1.9 KiB
Go
Raw Normal View History

2015-03-23 03:21:41 -07:00
package miner
2015-03-23 01:35:42 -07:00
import (
"math/big"
"github.com/ethereum/ethash"
2015-03-23 01:35:42 -07:00
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
)
2015-03-23 03:14:42 -07:00
type RemoteAgent struct {
2015-03-23 01:35:42 -07:00
work *types.Block
currentWork *types.Block
quit chan struct{}
workCh chan *types.Block
returnCh chan<- *types.Block
2015-03-23 01:35:42 -07:00
}
2015-03-23 03:14:42 -07:00
func NewRemoteAgent() *RemoteAgent {
agent := &RemoteAgent{}
2015-03-23 01:35:42 -07:00
return agent
}
2015-03-23 03:14:42 -07:00
func (a *RemoteAgent) Work() chan<- *types.Block {
2015-03-23 01:35:42 -07:00
return a.workCh
}
func (a *RemoteAgent) SetReturnCh(returnCh chan<- *types.Block) {
2015-03-23 01:35:42 -07:00
a.returnCh = returnCh
}
2015-03-23 03:14:42 -07:00
func (a *RemoteAgent) Start() {
2015-03-23 01:35:42 -07:00
a.quit = make(chan struct{})
a.workCh = make(chan *types.Block, 1)
2015-03-23 08:35:44 -07:00
go a.run()
2015-03-23 01:35:42 -07:00
}
2015-03-23 03:14:42 -07:00
func (a *RemoteAgent) Stop() {
2015-03-23 01:35:42 -07:00
close(a.quit)
close(a.workCh)
}
2015-03-23 03:14:42 -07:00
func (a *RemoteAgent) GetHashRate() int64 { return 0 }
2015-03-23 01:35:42 -07:00
2015-03-23 03:14:42 -07:00
func (a *RemoteAgent) run() {
2015-03-23 01:35:42 -07:00
out:
for {
select {
case <-a.quit:
break out
case work := <-a.workCh:
a.work = work
}
}
}
2015-03-23 03:14:42 -07:00
func (a *RemoteAgent) GetWork() [3]string {
2015-03-23 01:35:42 -07:00
var res [3]string
// XXX Wait here until work != nil ?
2015-03-23 01:35:42 -07:00
if a.work != nil {
2015-04-19 12:58:58 -07:00
a.currentWork = a.work
res[0] = a.work.HashNoNonce().Hex()
seedHash, _ := ethash.GetSeedHash(a.currentWork.NumberU64())
res[1] = common.Bytes2Hex(seedHash)
n := new(big.Int)
n.SetInt64(1)
n.Lsh(n, 255)
n.Div(n, a.work.Difficulty())
n.Lsh(n, 1)
res[2] = common.Bytes2Hex(n.Bytes())
2015-03-23 01:35:42 -07:00
}
return res
}
2015-03-23 03:14:42 -07:00
func (a *RemoteAgent) SubmitWork(nonce uint64, mixDigest, seedHash common.Hash) bool {
2015-03-23 01:35:42 -07:00
// Return true or false, but does not indicate if the PoW was correct
// Make sure the external miner was working on the right hash
if a.currentWork != nil && a.work != nil {
a.currentWork.SetNonce(nonce)
a.currentWork.Header().MixDigest = mixDigest
a.returnCh <- a.currentWork
//a.returnCh <- Work{a.currentWork.Number().Uint64(), nonce, mixDigest.Bytes(), seedHash.Bytes()}
2015-03-23 01:35:42 -07:00
return true
}
return false
}