Official Go implementation of the Ethereum protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-ethereum/miner/miner.go

66 lines
1.0 KiB

10 years ago
package miner
import (
"math/big"
10 years ago
"github.com/ethereum/ethash"
"github.com/ethereum/go-ethereum/core"
10 years ago
"github.com/ethereum/go-ethereum/logger"
10 years ago
"github.com/ethereum/go-ethereum/pow"
10 years ago
)
var minerlogger = logger.NewLogger("MINER")
type Miner struct {
worker *worker
MinAcceptedGasPrice *big.Int
Extra string
Coinbase []byte
mining bool
10 years ago
pow pow.PoW
}
10 years ago
func New(coinbase []byte, eth core.Backend, pow pow.PoW, minerThreads int) *Miner {
miner := &Miner{
Coinbase: coinbase,
worker: newWorker(coinbase, eth),
10 years ago
pow: pow,
10 years ago
}
minerThreads = 1
for i := 0; i < minerThreads; i++ {
10 years ago
miner.worker.register(NewCpuMiner(i, miner.pow))
}
10 years ago
return miner
10 years ago
}
func (self *Miner) Mining() bool {
return self.mining
10 years ago
}
func (self *Miner) Start() {
self.mining = true
self.pow.(*ethash.Ethash).UpdateDAG()
self.worker.start()
10 years ago
self.worker.commitNewWork()
10 years ago
}
func (self *Miner) Stop() {
self.mining = false
self.worker.stop()
//self.pow.(*ethash.Ethash).Stop()
}
func (self *Miner) HashRate() int64 {
return self.worker.HashRate()
}