2014-10-31 09:59:17 +00:00
|
|
|
package chain
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2014-06-02 13:20:27 +00:00
|
|
|
"container/list"
|
2014-11-04 10:04:02 +00:00
|
|
|
"errors"
|
2014-06-30 11:09:04 +00:00
|
|
|
"fmt"
|
2014-08-08 13:36:59 +00:00
|
|
|
"math/big"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2014-10-31 11:37:43 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2014-10-23 13:01:27 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethutil"
|
|
|
|
"github.com/ethereum/go-ethereum/event"
|
2014-10-31 11:56:05 +00:00
|
|
|
"github.com/ethereum/go-ethereum/logger"
|
2014-10-31 13:43:14 +00:00
|
|
|
"github.com/ethereum/go-ethereum/state"
|
2014-10-31 13:53:42 +00:00
|
|
|
"github.com/ethereum/go-ethereum/wire"
|
2014-02-14 22:56:09 +00:00
|
|
|
)
|
|
|
|
|
2014-10-31 11:56:05 +00:00
|
|
|
var statelogger = logger.NewLogger("BLOCK")
|
2014-06-23 11:54:10 +00:00
|
|
|
|
2014-06-02 13:20:27 +00:00
|
|
|
type Peer interface {
|
|
|
|
Inbound() bool
|
|
|
|
LastSend() time.Time
|
|
|
|
LastPong() int64
|
|
|
|
Host() []byte
|
|
|
|
Port() uint16
|
|
|
|
Version() string
|
2014-06-03 08:42:55 +00:00
|
|
|
PingTime() string
|
2014-06-02 13:20:27 +00:00
|
|
|
Connected() *int32
|
2014-09-26 11:45:26 +00:00
|
|
|
Caps() *ethutil.Value
|
2014-06-02 13:20:27 +00:00
|
|
|
}
|
|
|
|
|
2014-03-05 09:42:51 +00:00
|
|
|
type EthManager interface {
|
2014-11-04 09:57:02 +00:00
|
|
|
BlockManager() *BlockManager
|
2014-10-20 09:53:11 +00:00
|
|
|
ChainManager() *ChainManager
|
2014-03-05 09:42:51 +00:00
|
|
|
TxPool() *TxPool
|
2014-10-31 13:53:42 +00:00
|
|
|
Broadcast(msgType wire.MsgType, data []interface{})
|
2014-05-13 12:43:29 +00:00
|
|
|
PeerCount() int
|
|
|
|
IsMining() bool
|
|
|
|
IsListening() bool
|
2014-06-02 13:20:27 +00:00
|
|
|
Peers() *list.List
|
2014-10-31 11:37:43 +00:00
|
|
|
KeyManager() *crypto.KeyManager
|
2014-10-31 13:53:42 +00:00
|
|
|
ClientIdentity() wire.ClientIdentity
|
2014-08-11 14:23:38 +00:00
|
|
|
Db() ethutil.Database
|
2014-10-13 23:58:31 +00:00
|
|
|
EventMux() *event.TypeMux
|
2014-03-05 09:42:51 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 09:57:02 +00:00
|
|
|
type BlockManager struct {
|
2014-02-14 22:56:09 +00:00
|
|
|
// Mutex for locking the block processor. Blocks can only be handled one at a time
|
|
|
|
mutex sync.Mutex
|
2014-03-05 09:42:51 +00:00
|
|
|
// Canonical block chain
|
2014-10-20 09:53:11 +00:00
|
|
|
bc *ChainManager
|
2014-02-14 22:56:09 +00:00
|
|
|
// non-persistent key/value memory storage
|
|
|
|
mem map[string]*big.Int
|
2014-05-08 16:41:45 +00:00
|
|
|
// Proof of work used for validating
|
2014-02-14 22:56:09 +00:00
|
|
|
Pow PoW
|
2014-05-08 16:41:45 +00:00
|
|
|
// The ethereum manager interface
|
2014-09-29 10:57:51 +00:00
|
|
|
eth EthManager
|
2014-03-05 09:42:51 +00:00
|
|
|
// The managed states
|
2014-05-08 16:26:46 +00:00
|
|
|
// Transiently state. The trans state isn't ever saved, validated and
|
|
|
|
// it could be used for setting account nonces without effecting
|
|
|
|
// the main states.
|
2014-10-31 13:43:14 +00:00
|
|
|
transState *state.State
|
2014-05-17 12:07:52 +00:00
|
|
|
// Mining state. The mining state is used purely and solely by the mining
|
|
|
|
// operation.
|
2014-10-31 13:43:14 +00:00
|
|
|
miningState *state.State
|
2014-07-10 13:05:06 +00:00
|
|
|
|
|
|
|
// The last attempted block is mainly used for debugging purposes
|
|
|
|
// This does not have to be a valid block and will be set during
|
|
|
|
// 'Process' & canonical validation.
|
|
|
|
lastAttemptedBlock *Block
|
2014-09-29 10:57:51 +00:00
|
|
|
|
2014-10-13 23:58:31 +00:00
|
|
|
events event.Subscription
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 09:57:02 +00:00
|
|
|
func NewBlockManager(ethereum EthManager) *BlockManager {
|
|
|
|
sm := &BlockManager{
|
2014-10-13 23:58:31 +00:00
|
|
|
mem: make(map[string]*big.Int),
|
|
|
|
Pow: &EasyPow{},
|
|
|
|
eth: ethereum,
|
2014-10-20 09:53:11 +00:00
|
|
|
bc: ethereum.ChainManager(),
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
2014-10-20 09:53:11 +00:00
|
|
|
sm.transState = ethereum.ChainManager().CurrentBlock.State().Copy()
|
|
|
|
sm.miningState = ethereum.ChainManager().CurrentBlock.State().Copy()
|
2014-05-08 16:26:46 +00:00
|
|
|
|
2014-03-05 09:57:32 +00:00
|
|
|
return sm
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 09:57:02 +00:00
|
|
|
func (self *BlockManager) Start() {
|
2014-11-09 22:59:25 +00:00
|
|
|
statelogger.Debugln("Starting block manager")
|
2014-09-29 10:57:51 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 09:57:02 +00:00
|
|
|
func (self *BlockManager) Stop() {
|
2014-09-29 10:57:51 +00:00
|
|
|
statelogger.Debugln("Stopping state manager")
|
|
|
|
}
|
|
|
|
|
2014-11-04 09:57:02 +00:00
|
|
|
func (sm *BlockManager) CurrentState() *state.State {
|
2014-10-20 09:53:11 +00:00
|
|
|
return sm.eth.ChainManager().CurrentBlock.State()
|
2014-03-05 09:42:51 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 09:57:02 +00:00
|
|
|
func (sm *BlockManager) TransState() *state.State {
|
2014-05-08 16:26:46 +00:00
|
|
|
return sm.transState
|
2014-02-23 00:56:48 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 09:57:02 +00:00
|
|
|
func (sm *BlockManager) MiningState() *state.State {
|
2014-05-17 12:07:52 +00:00
|
|
|
return sm.miningState
|
|
|
|
}
|
|
|
|
|
2014-11-04 09:57:02 +00:00
|
|
|
func (sm *BlockManager) NewMiningState() *state.State {
|
2014-10-20 09:53:11 +00:00
|
|
|
sm.miningState = sm.eth.ChainManager().CurrentBlock.State().Copy()
|
2014-05-17 12:07:52 +00:00
|
|
|
|
|
|
|
return sm.miningState
|
|
|
|
}
|
|
|
|
|
2014-11-04 09:57:02 +00:00
|
|
|
func (sm *BlockManager) ChainManager() *ChainManager {
|
2014-03-05 09:57:32 +00:00
|
|
|
return sm.bc
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 09:57:02 +00:00
|
|
|
func (self *BlockManager) ProcessTransactions(coinbase *state.StateObject, state *state.State, block, parent *Block, txs Transactions) (Receipts, Transactions, Transactions, Transactions, error) {
|
2014-06-13 10:45:11 +00:00
|
|
|
var (
|
|
|
|
receipts Receipts
|
|
|
|
handled, unhandled Transactions
|
2014-10-27 15:52:58 +00:00
|
|
|
erroneous Transactions
|
2014-06-13 10:45:11 +00:00
|
|
|
totalUsedGas = big.NewInt(0)
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
done:
|
|
|
|
for i, tx := range txs {
|
2014-10-30 12:32:50 +00:00
|
|
|
// If we are mining this block and validating we want to set the logs back to 0
|
|
|
|
state.EmptyLogs()
|
|
|
|
|
2014-06-13 10:45:11 +00:00
|
|
|
txGas := new(big.Int).Set(tx.Gas)
|
2014-07-17 12:53:27 +00:00
|
|
|
|
|
|
|
cb := state.GetStateObject(coinbase.Address())
|
|
|
|
st := NewStateTransition(cb, tx, state, block)
|
2014-06-13 10:57:52 +00:00
|
|
|
err = st.TransitionState()
|
2014-05-22 15:35:26 +00:00
|
|
|
if err != nil {
|
2014-07-22 09:54:48 +00:00
|
|
|
statelogger.Infoln(err)
|
2014-06-13 10:45:11 +00:00
|
|
|
switch {
|
|
|
|
case IsNonceErr(err):
|
|
|
|
err = nil // ignore error
|
2014-06-10 15:23:32 +00:00
|
|
|
continue
|
2014-06-13 10:45:11 +00:00
|
|
|
case IsGasLimitErr(err):
|
|
|
|
unhandled = txs[i:]
|
2014-05-28 13:07:11 +00:00
|
|
|
|
2014-06-13 10:45:11 +00:00
|
|
|
break done
|
|
|
|
default:
|
2014-06-23 11:54:10 +00:00
|
|
|
statelogger.Infoln(err)
|
2014-10-27 15:52:58 +00:00
|
|
|
erroneous = append(erroneous, tx)
|
2014-07-01 09:26:45 +00:00
|
|
|
err = nil
|
2014-10-27 15:52:58 +00:00
|
|
|
continue
|
2014-06-13 10:45:11 +00:00
|
|
|
}
|
2014-05-22 15:35:26 +00:00
|
|
|
}
|
|
|
|
|
2014-06-19 11:42:14 +00:00
|
|
|
// Update the state with pending changes
|
|
|
|
state.Update()
|
|
|
|
|
2014-06-13 10:45:11 +00:00
|
|
|
txGas.Sub(txGas, st.gas)
|
2014-10-29 09:34:40 +00:00
|
|
|
cumulative := new(big.Int).Set(totalUsedGas.Add(totalUsedGas, txGas))
|
2014-11-11 11:16:36 +00:00
|
|
|
bloom := ethutil.LeftPadBytes(LogsBloom(state.Logs()).Bytes(), 64)
|
|
|
|
receipt := &Receipt{ethutil.CopyBytes(state.Root()), cumulative, bloom, state.Logs()}
|
2014-05-22 15:35:26 +00:00
|
|
|
|
2014-09-28 12:52:58 +00:00
|
|
|
// Notify all subscribers
|
2014-10-31 09:50:16 +00:00
|
|
|
go self.eth.EventMux().Post(TxPostEvent{tx})
|
2014-09-28 12:52:58 +00:00
|
|
|
|
2014-05-22 15:35:26 +00:00
|
|
|
receipts = append(receipts, receipt)
|
2014-06-13 10:45:11 +00:00
|
|
|
handled = append(handled, tx)
|
2014-07-11 14:04:09 +00:00
|
|
|
|
2014-07-13 22:37:18 +00:00
|
|
|
if ethutil.Config.Diff && ethutil.Config.DiffType == "all" {
|
2014-07-11 14:04:09 +00:00
|
|
|
state.CreateOutputForDiff()
|
|
|
|
}
|
2014-05-20 22:17:50 +00:00
|
|
|
}
|
2014-05-22 15:35:26 +00:00
|
|
|
|
2014-11-09 22:59:25 +00:00
|
|
|
block.GasUsed = totalUsedGas
|
2014-06-11 09:40:40 +00:00
|
|
|
|
2014-10-27 15:52:58 +00:00
|
|
|
return receipts, handled, unhandled, erroneous, err
|
2014-05-20 22:17:50 +00:00
|
|
|
}
|
|
|
|
|
2014-11-10 12:27:24 +00:00
|
|
|
func (sm *BlockManager) Process(block *Block) (td *big.Int, msgs state.Messages, err error) {
|
2014-02-14 22:56:09 +00:00
|
|
|
// Processing a blocks may never happen simultaneously
|
2014-03-05 09:57:32 +00:00
|
|
|
sm.mutex.Lock()
|
|
|
|
defer sm.mutex.Unlock()
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-06-23 09:23:18 +00:00
|
|
|
if sm.bc.HasBlock(block.Hash()) {
|
2014-11-10 12:27:24 +00:00
|
|
|
return nil, nil, nil
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-06-23 09:23:18 +00:00
|
|
|
if !sm.bc.HasBlock(block.PrevHash) {
|
2014-11-10 12:27:24 +00:00
|
|
|
return nil, nil, ParentError(block.PrevHash)
|
2014-06-23 09:23:18 +00:00
|
|
|
}
|
2014-11-04 11:46:33 +00:00
|
|
|
parent := sm.bc.GetBlock(block.PrevHash)
|
|
|
|
|
|
|
|
return sm.ProcessWithParent(block, parent)
|
|
|
|
}
|
2014-06-23 09:23:18 +00:00
|
|
|
|
2014-11-10 12:27:24 +00:00
|
|
|
func (sm *BlockManager) ProcessWithParent(block, parent *Block) (td *big.Int, messages state.Messages, err error) {
|
2014-07-10 13:05:06 +00:00
|
|
|
sm.lastAttemptedBlock = block
|
|
|
|
|
2014-11-07 11:18:48 +00:00
|
|
|
state := parent.State().Copy()
|
2014-06-23 09:23:18 +00:00
|
|
|
|
2014-04-29 10:36:27 +00:00
|
|
|
// Defer the Undo on the Trie. If the block processing happened
|
|
|
|
// we don't want to undo but since undo only happens on dirty
|
|
|
|
// nodes this won't happen because Commit would have been called
|
|
|
|
// before that.
|
2014-05-17 12:07:52 +00:00
|
|
|
defer state.Reset()
|
2014-04-29 10:36:27 +00:00
|
|
|
|
2014-07-13 22:37:18 +00:00
|
|
|
if ethutil.Config.Diff && ethutil.Config.DiffType == "all" {
|
|
|
|
fmt.Printf("## %x %x ##\n", block.Hash(), block.Number)
|
2014-07-11 14:04:09 +00:00
|
|
|
}
|
|
|
|
|
2014-11-09 22:59:25 +00:00
|
|
|
receipts, err := sm.ApplyDiff(state, parent, block)
|
2014-11-07 11:18:48 +00:00
|
|
|
if err != nil {
|
2014-11-10 12:27:24 +00:00
|
|
|
return
|
2014-11-07 11:18:48 +00:00
|
|
|
}
|
|
|
|
|
2014-11-12 00:36:36 +00:00
|
|
|
txSha := DeriveSha(block.transactions)
|
|
|
|
if bytes.Compare(txSha, block.TxSha) != 0 {
|
|
|
|
err = fmt.Errorf("Error validating transaction sha. Received %x, got %x", block.TxSha, txSha)
|
|
|
|
return
|
|
|
|
}
|
2014-10-29 09:34:40 +00:00
|
|
|
|
|
|
|
receiptSha := DeriveSha(receipts)
|
|
|
|
if bytes.Compare(receiptSha, block.ReceiptSha) != 0 {
|
2014-11-10 12:27:24 +00:00
|
|
|
err = fmt.Errorf("Error validating receipt sha. Received %x, got %x", block.ReceiptSha, receiptSha)
|
|
|
|
return
|
2014-07-21 10:21:34 +00:00
|
|
|
}
|
|
|
|
|
2014-02-14 22:56:09 +00:00
|
|
|
// Block validation
|
2014-11-04 11:46:33 +00:00
|
|
|
if err = sm.ValidateBlock(block, parent); err != nil {
|
2014-06-23 11:54:10 +00:00
|
|
|
statelogger.Errorln("Error validating block:", err)
|
2014-11-10 12:27:24 +00:00
|
|
|
return
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-09-14 23:11:01 +00:00
|
|
|
if err = sm.AccumelateRewards(state, block, parent); err != nil {
|
2014-06-23 11:54:10 +00:00
|
|
|
statelogger.Errorln("Error accumulating reward", err)
|
2014-11-10 12:27:24 +00:00
|
|
|
return
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-11-13 17:12:12 +00:00
|
|
|
block.SetReceipts(receipts)
|
|
|
|
rbloom := CreateBloom(block)
|
|
|
|
if bytes.Compare(rbloom, block.LogsBloom) != 0 {
|
|
|
|
err = fmt.Errorf("unable to replicate block's bloom: %x", rbloom)
|
2014-11-10 12:27:24 +00:00
|
|
|
return
|
2014-11-04 10:04:02 +00:00
|
|
|
}
|
|
|
|
|
2014-09-15 13:42:12 +00:00
|
|
|
state.Update()
|
|
|
|
|
2014-05-17 12:07:52 +00:00
|
|
|
if !block.State().Cmp(state) {
|
2014-11-12 00:36:36 +00:00
|
|
|
err = fmt.Errorf("Invalid merkle root.\nrec: %x\nis: %x", block.State().Root(), state.Root())
|
2014-06-19 11:42:14 +00:00
|
|
|
return
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate the new total difficulty and sync back to the db
|
2014-11-04 11:46:33 +00:00
|
|
|
if td, ok := sm.CalculateTD(block); ok {
|
2014-02-18 00:33:26 +00:00
|
|
|
// Sync the current block's state to the database and cancelling out the deferred Undo
|
2014-05-17 12:07:52 +00:00
|
|
|
state.Sync()
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-11-10 12:27:24 +00:00
|
|
|
messages := state.Manifest().Messages
|
2014-10-29 13:20:42 +00:00
|
|
|
state.Manifest().Reset()
|
2014-05-13 15:51:33 +00:00
|
|
|
|
2014-11-11 11:16:36 +00:00
|
|
|
/*
|
|
|
|
sm.eth.ChainManager().SetTotalDifficulty(td)
|
|
|
|
sm.eth.ChainManager().add(block)
|
|
|
|
sm.eth.EventMux().Post(NewBlockEvent{block})
|
|
|
|
sm.eth.EventMux().Post(messages)
|
|
|
|
*/
|
|
|
|
|
|
|
|
sm.transState = state.Copy()
|
|
|
|
|
2014-10-27 15:52:58 +00:00
|
|
|
sm.eth.TxPool().RemoveSet(block.Transactions())
|
2014-11-04 11:46:33 +00:00
|
|
|
|
2014-11-10 12:27:24 +00:00
|
|
|
return td, messages, nil
|
2014-02-14 22:56:09 +00:00
|
|
|
} else {
|
2014-11-10 12:27:24 +00:00
|
|
|
return nil, nil, errors.New("total diff failed")
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-23 09:23:18 +00:00
|
|
|
|
2014-11-04 09:57:02 +00:00
|
|
|
func (sm *BlockManager) ApplyDiff(state *state.State, parent, block *Block) (receipts Receipts, err error) {
|
2014-06-23 09:23:18 +00:00
|
|
|
coinbase := state.GetOrNewStateObject(block.Coinbase)
|
|
|
|
coinbase.SetGasPool(block.CalcGasLimit(parent))
|
|
|
|
|
|
|
|
// Process the transactions on to current block
|
2014-10-27 15:52:58 +00:00
|
|
|
receipts, _, _, _, err = sm.ProcessTransactions(coinbase, state, block, parent, block.Transactions())
|
2014-06-30 18:03:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-06-23 09:23:18 +00:00
|
|
|
|
|
|
|
return receipts, nil
|
|
|
|
}
|
|
|
|
|
2014-11-04 11:46:33 +00:00
|
|
|
func (sm *BlockManager) CalculateTD(block *Block) (*big.Int, bool) {
|
2014-02-14 22:56:09 +00:00
|
|
|
uncleDiff := new(big.Int)
|
|
|
|
for _, uncle := range block.Uncles {
|
|
|
|
uncleDiff = uncleDiff.Add(uncleDiff, uncle.Difficulty)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TD(genesis_block) = 0 and TD(B) = TD(B.parent) + sum(u.difficulty for u in B.uncles) + B.difficulty
|
|
|
|
td := new(big.Int)
|
2014-03-05 09:57:32 +00:00
|
|
|
td = td.Add(sm.bc.TD, uncleDiff)
|
2014-02-14 22:56:09 +00:00
|
|
|
td = td.Add(td, block.Difficulty)
|
|
|
|
|
|
|
|
// The new TD will only be accepted if the new difficulty is
|
|
|
|
// is greater than the previous.
|
2014-03-05 09:57:32 +00:00
|
|
|
if td.Cmp(sm.bc.TD) > 0 {
|
2014-11-04 11:46:33 +00:00
|
|
|
return td, true
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-11-04 11:46:33 +00:00
|
|
|
// Set the new total difficulty back to the block chain
|
|
|
|
//sm.bc.SetTotalDifficulty(td)
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 11:46:33 +00:00
|
|
|
return nil, false
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validates the current block. Returns an error if the block was invalid,
|
|
|
|
// an uncle or anything that isn't on the current block chain.
|
|
|
|
// Validation validates easy over difficult (dagger takes longer time = difficult)
|
2014-11-04 11:46:33 +00:00
|
|
|
func (sm *BlockManager) ValidateBlock(block, parent *Block) error {
|
2014-10-10 15:00:06 +00:00
|
|
|
expd := CalcDifficulty(block, parent)
|
|
|
|
if expd.Cmp(block.Difficulty) < 0 {
|
|
|
|
return fmt.Errorf("Difficulty check failed for block %v, %v", block.Difficulty, expd)
|
|
|
|
}
|
|
|
|
|
2014-09-15 20:11:05 +00:00
|
|
|
diff := block.Time - parent.Time
|
2014-02-14 22:56:09 +00:00
|
|
|
if diff < 0 {
|
2014-07-18 14:13:21 +00:00
|
|
|
return ValidationError("Block timestamp less then prev block %v (%v - %v)", diff, block.Time, sm.bc.CurrentBlock.Time)
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-06-19 22:42:26 +00:00
|
|
|
/* XXX
|
2014-02-14 22:56:09 +00:00
|
|
|
// New blocks must be within the 15 minute range of the last block.
|
|
|
|
if diff > int64(15*time.Minute) {
|
|
|
|
return ValidationError("Block is too far in the future of last block (> 15 minutes)")
|
|
|
|
}
|
2014-06-19 22:42:26 +00:00
|
|
|
*/
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
// Verify the nonce of the block. Return an error if it's not valid
|
2014-03-05 09:57:32 +00:00
|
|
|
if !sm.Pow.Verify(block.HashNoNonce(), block.Difficulty, block.Nonce) {
|
2014-06-29 17:30:05 +00:00
|
|
|
return ValidationError("Block's nonce is invalid (= %v)", ethutil.Bytes2Hex(block.Nonce))
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-11-04 09:57:02 +00:00
|
|
|
func (sm *BlockManager) AccumelateRewards(state *state.State, block, parent *Block) error {
|
2014-09-15 13:42:12 +00:00
|
|
|
reward := new(big.Int).Set(BlockReward)
|
2014-05-22 15:35:26 +00:00
|
|
|
|
2014-09-14 23:11:01 +00:00
|
|
|
knownUncles := ethutil.Set(parent.Uncles)
|
|
|
|
nonces := ethutil.NewSet(block.Nonce)
|
|
|
|
for _, uncle := range block.Uncles {
|
|
|
|
if nonces.Include(uncle.Nonce) {
|
|
|
|
// Error not unique
|
|
|
|
return UncleError("Uncle not unique")
|
|
|
|
}
|
2014-02-18 00:33:26 +00:00
|
|
|
|
2014-09-14 23:11:01 +00:00
|
|
|
uncleParent := sm.bc.GetBlock(uncle.PrevHash)
|
|
|
|
if uncleParent == nil {
|
2014-11-07 11:18:48 +00:00
|
|
|
return UncleError(fmt.Sprintf("Uncle's parent unknown (%x)", uncle.PrevHash[0:4]))
|
2014-09-14 23:11:01 +00:00
|
|
|
}
|
2014-02-18 00:33:26 +00:00
|
|
|
|
2014-09-14 23:11:01 +00:00
|
|
|
if uncleParent.Number.Cmp(new(big.Int).Sub(parent.Number, big.NewInt(6))) < 0 {
|
|
|
|
return UncleError("Uncle too old")
|
|
|
|
}
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-09-14 23:11:01 +00:00
|
|
|
if knownUncles.Include(uncle.Hash()) {
|
|
|
|
return UncleError("Uncle in chain")
|
|
|
|
}
|
|
|
|
|
2014-09-15 13:42:12 +00:00
|
|
|
nonces.Insert(uncle.Nonce)
|
|
|
|
|
2014-09-14 23:11:01 +00:00
|
|
|
r := new(big.Int)
|
|
|
|
r.Mul(BlockReward, big.NewInt(15)).Div(r, big.NewInt(16))
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-05-17 12:07:52 +00:00
|
|
|
uncleAccount := state.GetAccount(uncle.Coinbase)
|
2014-09-14 23:11:01 +00:00
|
|
|
uncleAccount.AddAmount(r)
|
2014-02-18 00:33:26 +00:00
|
|
|
|
2014-09-14 23:11:01 +00:00
|
|
|
reward.Add(reward, new(big.Int).Div(BlockReward, big.NewInt(32)))
|
2014-02-18 00:33:26 +00:00
|
|
|
}
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-09-14 23:11:01 +00:00
|
|
|
// Get the account associated with the coinbase
|
|
|
|
account := state.GetAccount(block.Coinbase)
|
|
|
|
// Reward amount of ether to the coinbase address
|
|
|
|
account.AddAmount(reward)
|
|
|
|
|
2014-02-14 22:56:09 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-11-04 09:57:02 +00:00
|
|
|
func (sm *BlockManager) GetMessages(block *Block) (messages []*state.Message, err error) {
|
2014-08-11 14:23:38 +00:00
|
|
|
if !sm.bc.HasBlock(block.PrevHash) {
|
|
|
|
return nil, ParentError(block.PrevHash)
|
|
|
|
}
|
|
|
|
|
|
|
|
sm.lastAttemptedBlock = block
|
|
|
|
|
|
|
|
var (
|
|
|
|
parent = sm.bc.GetBlock(block.PrevHash)
|
|
|
|
state = parent.State().Copy()
|
|
|
|
)
|
|
|
|
|
|
|
|
defer state.Reset()
|
|
|
|
|
2014-08-14 15:02:21 +00:00
|
|
|
sm.ApplyDiff(state, parent, block)
|
2014-08-11 14:23:38 +00:00
|
|
|
|
2014-09-14 23:11:01 +00:00
|
|
|
sm.AccumelateRewards(state, block, parent)
|
2014-08-11 14:23:38 +00:00
|
|
|
|
|
|
|
return state.Manifest().Messages, nil
|
2014-04-30 12:43:32 +00:00
|
|
|
}
|