quorum/miner/remote_agent.go

82 lines
1.6 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 (
"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
2015-03-23 03:21:41 -07:00
returnCh chan<- Work
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
go agent.run()
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
}
2015-03-23 03:21:41 -07:00
func (a *RemoteAgent) SetWorkCh(returnCh chan<- Work) {
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 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 {
res[0] = a.work.HashNoNonce().Hex()
seedHash, _ := ethash.GetSeedHash(a.currentWork.NumberU64())
res[1] = common.Bytes2Hex(seedHash)
res[2] = common.Bytes2Hex(a.work.Difficulty().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.Hash() == a.work.Hash() {
2015-03-23 03:21:41 -07:00
a.returnCh <- Work{a.currentWork.Number().Uint64(), nonce, mixDigest.Bytes(), seedHash.Bytes()}
2015-03-23 01:35:42 -07:00
return true
}
return false
}