2014-10-31 13:56:42 +00:00
|
|
|
package miner
|
|
|
|
|
|
|
|
import (
|
2014-11-07 11:18:48 +00:00
|
|
|
"math/big"
|
2014-10-31 13:56:42 +00:00
|
|
|
|
2015-03-06 09:22:40 +00:00
|
|
|
"github.com/ethereum/ethash"
|
2015-03-18 12:00:01 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-02-17 11:24:51 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
2015-03-03 16:55:23 +00:00
|
|
|
"github.com/ethereum/go-ethereum/pow"
|
2014-10-31 13:56:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Miner struct {
|
2015-02-09 15:20:34 +00:00
|
|
|
worker *worker
|
2014-11-07 11:18:48 +00:00
|
|
|
|
|
|
|
MinAcceptedGasPrice *big.Int
|
2015-01-05 23:19:07 +00:00
|
|
|
Extra string
|
2014-11-07 11:18:48 +00:00
|
|
|
|
2015-03-11 22:35:34 +00:00
|
|
|
mining bool
|
|
|
|
eth core.Backend
|
|
|
|
pow pow.PoW
|
2014-11-07 11:18:48 +00:00
|
|
|
}
|
|
|
|
|
2015-03-11 22:35:34 +00:00
|
|
|
func New(eth core.Backend, pow pow.PoW, minerThreads int) *Miner {
|
|
|
|
// note: minerThreads is currently ignored because
|
|
|
|
// ethash is not thread safe.
|
2015-03-24 09:34:06 +00:00
|
|
|
miner := &Miner{eth: eth, pow: pow, worker: newWorker(common.Address{}, eth)}
|
|
|
|
for i := 0; i < minerThreads; i++ {
|
|
|
|
miner.worker.register(NewCpuMiner(i, pow))
|
|
|
|
}
|
|
|
|
return miner
|
2014-10-31 13:56:42 +00:00
|
|
|
}
|
|
|
|
|
2014-11-07 11:18:48 +00:00
|
|
|
func (self *Miner) Mining() bool {
|
|
|
|
return self.mining
|
2014-10-31 13:56:42 +00:00
|
|
|
}
|
|
|
|
|
2015-03-18 12:00:01 +00:00
|
|
|
func (self *Miner) Start(coinbase common.Address) {
|
2015-02-13 16:23:09 +00:00
|
|
|
self.mining = true
|
2015-03-22 14:38:01 +00:00
|
|
|
self.worker.coinbase = coinbase
|
2015-02-13 16:23:09 +00:00
|
|
|
|
2015-03-06 09:22:40 +00:00
|
|
|
self.pow.(*ethash.Ethash).UpdateDAG()
|
|
|
|
|
2015-02-09 15:20:34 +00:00
|
|
|
self.worker.start()
|
|
|
|
self.worker.commitNewWork()
|
2014-10-31 13:56:42 +00:00
|
|
|
}
|
2014-11-07 11:18:48 +00:00
|
|
|
|
2015-03-22 14:38:01 +00:00
|
|
|
func (self *Miner) Register(agent Agent) {
|
|
|
|
self.worker.register(agent)
|
|
|
|
}
|
|
|
|
|
2015-02-09 15:20:34 +00:00
|
|
|
func (self *Miner) Stop() {
|
2015-02-13 16:23:09 +00:00
|
|
|
self.mining = false
|
2015-02-09 15:20:34 +00:00
|
|
|
self.worker.stop()
|
2015-03-06 09:22:40 +00:00
|
|
|
|
|
|
|
//self.pow.(*ethash.Ethash).Stop()
|
2015-02-09 15:20:34 +00:00
|
|
|
}
|
2014-11-07 11:18:48 +00:00
|
|
|
|
2015-02-09 15:20:34 +00:00
|
|
|
func (self *Miner) HashRate() int64 {
|
2015-02-28 22:09:49 +00:00
|
|
|
return self.worker.HashRate()
|
2014-11-07 11:18:48 +00:00
|
|
|
}
|