quorum/miner/miner.go

292 lines
7.4 KiB
Go
Raw Normal View History

/*
This file is part of go-ethereum
go-ethereum is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
go-ethereum is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @authors
* Jeffrey Wilcke <i@jev.io>
* @date 2014
*
*/
2014-10-31 06:56:42 -07:00
package miner
import (
2015-02-05 08:29:41 -08:00
"fmt"
"math/big"
2014-10-31 06:56:42 -07:00
"sort"
2015-02-05 08:29:41 -08:00
"github.com/ethereum/c-ethash/go-ethash"
2014-12-04 01:28:02 -08:00
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/types"
2015-02-05 08:29:41 -08:00
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/ethutil"
2014-10-31 06:56:42 -07:00
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/logger"
2015-02-05 08:29:41 -08:00
"github.com/ethereum/go-ethereum/pow"
"github.com/ethereum/go-ethereum/state"
2014-10-31 06:56:42 -07:00
)
2015-02-05 08:29:41 -08:00
var dx = []byte{0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42}
var dy = []byte{0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43, 0x43}
const epochLen = uint64(1000)
func getSeed(chainMan *core.ChainManager, block *types.Block) (x []byte, y []byte) {
if block.Number().Uint64() == 0 {
return dx, dy
} else if block.Number().Uint64()%epochLen == 0 {
x, y = getSeed(chainMan, chainMan.GetBlock(block.ParentHash()))
if (block.Number().Uint64()/epochLen)%2 > 0 {
y = crypto.Sha3(append(y, block.ParentHash()...))
} else {
x = crypto.Sha3(append(x, block.ParentHash()...))
}
return x, y
} else {
return getSeed(chainMan, chainMan.GetBlock(block.ParentHash()))
}
}
type LocalTx struct {
To []byte `json:"to"`
Data []byte `json:"data"`
Gas string `json:"gas"`
GasPrice string `json:"gasPrice"`
Value string `json:"value"`
}
func (self *LocalTx) Sign(key []byte) *types.Transaction {
return nil
}
2014-10-31 06:56:42 -07:00
var minerlogger = logger.NewLogger("MINER")
type Miner struct {
eth *eth.Ethereum
events event.Subscription
2014-10-31 06:56:42 -07:00
uncles []*types.Header
localTxs map[int]*LocalTx
localTxId int
2014-12-10 07:45:16 -08:00
pow pow.PoW
quitCh chan struct{}
powQuitCh chan struct{}
Coinbase []byte
2014-10-31 06:56:42 -07:00
mining bool
MinAcceptedGasPrice *big.Int
2015-01-05 15:19:07 -08:00
Extra string
}
func New(coinbase []byte, eth *eth.Ethereum) *Miner {
return &Miner{
eth: eth,
powQuitCh: make(chan struct{}),
mining: false,
localTxs: make(map[int]*LocalTx),
MinAcceptedGasPrice: big.NewInt(10000000000000),
Coinbase: coinbase,
}
2014-10-31 06:56:42 -07:00
}
2014-12-10 07:45:16 -08:00
func (self *Miner) GetPow() pow.PoW {
2014-10-31 06:56:42 -07:00
return self.pow
}
func (self *Miner) AddLocalTx(tx *LocalTx) int {
minerlogger.Infof("Added local tx (%x %v / %v)\n", tx.To[0:4], tx.GasPrice, tx.Value)
self.localTxId++
self.localTxs[self.localTxId] = tx
self.eth.EventMux().Post(tx)
return self.localTxId
}
func (self *Miner) RemoveLocalTx(id int) {
if tx := self.localTxs[id]; tx != nil {
minerlogger.Infof("Removed local tx (%x %v / %v)\n", tx.To[0:4], tx.GasPrice, tx.Value)
2014-10-31 06:56:42 -07:00
}
self.eth.EventMux().Post(&LocalTx{})
2014-10-31 06:56:42 -07:00
delete(self.localTxs, id)
2014-10-31 06:56:42 -07:00
}
func (self *Miner) Start() {
if self.mining {
return
}
2014-10-31 06:56:42 -07:00
minerlogger.Infoln("Starting mining operations")
self.mining = true
self.quitCh = make(chan struct{})
self.powQuitCh = make(chan struct{})
mux := self.eth.EventMux()
2014-12-04 01:28:02 -08:00
self.events = mux.Subscribe(core.NewBlockEvent{}, core.TxPreEvent{}, &LocalTx{})
go self.update()
go self.mine()
2014-10-31 06:56:42 -07:00
}
func (self *Miner) Stop() {
if !self.mining {
return
}
2014-10-31 06:56:42 -07:00
self.mining = false
2014-10-31 06:56:42 -07:00
minerlogger.Infoln("Stopping mining operations")
2014-10-31 06:56:42 -07:00
self.events.Unsubscribe()
2014-10-31 06:56:42 -07:00
close(self.quitCh)
close(self.powQuitCh)
2014-10-31 06:56:42 -07:00
}
func (self *Miner) Mining() bool {
return self.mining
2014-10-31 06:56:42 -07:00
}
func (self *Miner) update() {
out:
2014-10-31 06:56:42 -07:00
for {
select {
case event := <-self.events.Chan():
2014-10-31 06:56:42 -07:00
switch event := event.(type) {
2014-12-04 01:28:02 -08:00
case core.NewBlockEvent:
2014-10-31 06:56:42 -07:00
block := event.Block
if self.eth.ChainManager().HasBlock(block.Hash()) {
self.reset()
self.eth.TxPool().RemoveSet(block.Transactions())
go self.mine()
} else if true {
// do uncle stuff
2014-10-31 06:56:42 -07:00
}
2014-12-04 01:28:02 -08:00
case core.TxPreEvent, *LocalTx:
self.reset()
go self.mine()
2014-10-31 06:56:42 -07:00
}
case <-self.quitCh:
break out
2014-10-31 06:56:42 -07:00
}
}
}
func (self *Miner) reset() {
close(self.powQuitCh)
self.powQuitCh = make(chan struct{})
2014-10-31 06:56:42 -07:00
}
func (self *Miner) mine() {
var (
2015-01-04 15:18:44 -08:00
blockProcessor = self.eth.BlockProcessor()
chainMan = self.eth.ChainManager()
block = chainMan.NewBlock(self.Coinbase)
2015-01-07 04:17:48 -08:00
state = state.New(block.Root(), self.eth.Db())
)
2015-01-05 15:19:07 -08:00
block.Header().Extra = self.Extra
2014-10-31 06:56:42 -07:00
// Apply uncles
block.SetUncles(self.uncles)
2014-10-31 06:56:42 -07:00
parent := chainMan.GetBlock(block.ParentHash())
2015-01-07 04:17:48 -08:00
coinbase := state.GetOrNewStateObject(block.Coinbase())
coinbase.SetGasPool(core.CalcGasLimit(parent, block))
transactions := self.finiliseTxs()
2014-10-31 06:56:42 -07:00
// Accumulate all valid transactions and apply them to the new state
// Error may be ignored. It's not important during mining
2015-01-04 15:18:44 -08:00
receipts, txs, _, erroneous, err := blockProcessor.ApplyTransactions(coinbase, state, block, transactions, true)
2014-10-31 06:56:42 -07:00
if err != nil {
minerlogger.Debugln(err)
}
self.eth.TxPool().RemoveSet(erroneous)
2014-10-31 06:56:42 -07:00
block.SetTransactions(txs)
block.SetReceipts(receipts)
2014-10-31 06:56:42 -07:00
// Accumulate the rewards included for this block
blockProcessor.AccumulateRewards(state, block, parent)
2014-10-31 06:56:42 -07:00
2014-12-30 04:18:19 -08:00
state.Update(ethutil.Big0)
block.SetRoot(state.Root())
2014-10-31 06:56:42 -07:00
minerlogger.Infof("Mining on block. Includes %v transactions", len(transactions))
2014-10-31 06:56:42 -07:00
2015-02-05 09:13:35 -08:00
x, _ := getSeed(chainMan, block)
self.pow, err = ethash.New(x, block)
2015-02-05 08:29:41 -08:00
if err != nil {
2015-02-05 09:13:35 -08:00
fmt.Println("miner gave back err", err)
2015-02-05 08:29:41 -08:00
return
}
2014-10-31 06:56:42 -07:00
// Find a valid nonce
nonce := self.pow.Search(block, self.powQuitCh)
2014-10-31 06:56:42 -07:00
if nonce != nil {
block.Header().Nonce = nonce
2014-12-02 02:52:56 -08:00
err := chainMan.InsertChain(types.Blocks{block})
2014-10-31 06:56:42 -07:00
if err != nil {
minerlogger.Infoln(err)
} else {
self.eth.EventMux().Post(core.NewMinedBlockEvent{block})
minerlogger.Infof("🔨 Mined block %x\n", block.Hash())
minerlogger.Infoln(block)
2014-10-31 06:56:42 -07:00
}
go self.mine()
2014-10-31 06:56:42 -07:00
}
}
func (self *Miner) finiliseTxs() types.Transactions {
// Sort the transactions by nonce in case of odd network propagation
actualSize := len(self.localTxs) // See copy below
txs := make(types.Transactions, actualSize+self.eth.TxPool().Size())
2014-12-10 10:59:12 -08:00
state := self.eth.ChainManager().TransState()
// XXX This has to change. Coinbase is, for new, same as key.
key := self.eth.KeyManager()
for i, ltx := range self.localTxs {
tx := types.NewTransactionMessage(ltx.To, ethutil.Big(ltx.Value), ethutil.Big(ltx.Gas), ethutil.Big(ltx.GasPrice), ltx.Data)
tx.SetNonce(state.GetNonce(self.Coinbase))
state.SetNonce(self.Coinbase, tx.Nonce()+1)
tx.Sign(key.PrivateKey())
txs[i] = tx
}
// Faster than append
for _, tx := range self.eth.TxPool().GetTransactions() {
if tx.GasPrice().Cmp(self.MinAcceptedGasPrice) >= 0 {
txs[actualSize] = tx
actualSize++
}
}
newTransactions := make(types.Transactions, actualSize)
copy(newTransactions, txs[:actualSize])
sort.Sort(types.TxByNonce{newTransactions})
return newTransactions
}