2014-02-14 22:56:09 +00:00
|
|
|
package ethchain
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2014-06-02 13:20:27 +00:00
|
|
|
"container/list"
|
2014-06-30 11:09:04 +00:00
|
|
|
"fmt"
|
2014-06-29 17:30:05 +00:00
|
|
|
"github.com/ethereum/eth-go/ethcrypto"
|
2014-06-26 17:45:57 +00:00
|
|
|
"github.com/ethereum/eth-go/ethlog"
|
2014-07-02 15:48:10 +00:00
|
|
|
"github.com/ethereum/eth-go/ethtrie"
|
2014-02-14 22:56:09 +00:00
|
|
|
"github.com/ethereum/eth-go/ethutil"
|
2014-03-05 09:42:51 +00:00
|
|
|
"github.com/ethereum/eth-go/ethwire"
|
2014-02-14 22:56:09 +00:00
|
|
|
"math/big"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2014-06-23 11:54:10 +00:00
|
|
|
var statelogger = ethlog.NewLogger("STATE")
|
|
|
|
|
2014-02-14 22:56:09 +00:00
|
|
|
type BlockProcessor interface {
|
|
|
|
ProcessBlock(block *Block)
|
|
|
|
}
|
|
|
|
|
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-03-05 09:42:51 +00:00
|
|
|
type EthManager interface {
|
2014-03-05 09:57:32 +00:00
|
|
|
StateManager() *StateManager
|
2014-03-05 09:42:51 +00:00
|
|
|
BlockChain() *BlockChain
|
|
|
|
TxPool() *TxPool
|
|
|
|
Broadcast(msgType ethwire.MsgType, data []interface{})
|
2014-07-07 08:59:16 +00:00
|
|
|
Reactor() *ethutil.ReactorEngine
|
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-06-29 17:30:05 +00:00
|
|
|
KeyManager() *ethcrypto.KeyManager
|
2014-07-03 14:08:06 +00:00
|
|
|
ClientIdentity() ethwire.ClientIdentity
|
2014-03-05 09:42:51 +00:00
|
|
|
}
|
|
|
|
|
2014-03-05 09:57:32 +00:00
|
|
|
type StateManager 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-02-14 22:56:09 +00:00
|
|
|
bc *BlockChain
|
|
|
|
// Stack for processing contracts
|
|
|
|
stack *Stack
|
|
|
|
// 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-03-05 09:42:51 +00:00
|
|
|
Ethereum EthManager
|
|
|
|
// 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.
|
|
|
|
transState *State
|
2014-05-17 12:07:52 +00:00
|
|
|
// Mining state. The mining state is used purely and solely by the mining
|
|
|
|
// operation.
|
|
|
|
miningState *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-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-03-05 09:57:32 +00:00
|
|
|
func NewStateManager(ethereum EthManager) *StateManager {
|
|
|
|
sm := &StateManager{
|
2014-05-08 16:41:45 +00:00
|
|
|
stack: NewStack(),
|
|
|
|
mem: make(map[string]*big.Int),
|
|
|
|
Pow: &EasyPow{},
|
|
|
|
Ethereum: ethereum,
|
|
|
|
bc: ethereum.BlockChain(),
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
2014-05-17 12:07:52 +00:00
|
|
|
sm.transState = ethereum.BlockChain().CurrentBlock.State().Copy()
|
|
|
|
sm.miningState = ethereum.BlockChain().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-05-17 12:07:52 +00:00
|
|
|
func (sm *StateManager) CurrentState() *State {
|
|
|
|
return sm.Ethereum.BlockChain().CurrentBlock.State()
|
2014-03-05 09:42:51 +00:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:26:46 +00:00
|
|
|
func (sm *StateManager) TransState() *State {
|
|
|
|
return sm.transState
|
2014-02-23 00:56:48 +00:00
|
|
|
}
|
|
|
|
|
2014-05-17 12:07:52 +00:00
|
|
|
func (sm *StateManager) MiningState() *State {
|
|
|
|
return sm.miningState
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sm *StateManager) NewMiningState() *State {
|
|
|
|
sm.miningState = sm.Ethereum.BlockChain().CurrentBlock.State().Copy()
|
|
|
|
|
|
|
|
return sm.miningState
|
|
|
|
}
|
|
|
|
|
2014-03-05 09:57:32 +00:00
|
|
|
func (sm *StateManager) BlockChain() *BlockChain {
|
|
|
|
return sm.bc
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-06-16 09:14:01 +00:00
|
|
|
func (self *StateManager) ProcessTransactions(coinbase *StateObject, state *State, block, parent *Block, txs Transactions) (Receipts, Transactions, Transactions, error) {
|
2014-06-13 10:45:11 +00:00
|
|
|
var (
|
|
|
|
receipts Receipts
|
|
|
|
handled, unhandled Transactions
|
|
|
|
totalUsedGas = big.NewInt(0)
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
done:
|
|
|
|
for i, tx := range txs {
|
|
|
|
txGas := new(big.Int).Set(tx.Gas)
|
2014-06-13 10:57:52 +00:00
|
|
|
st := NewStateTransition(coinbase, tx, state, block)
|
|
|
|
err = st.TransitionState()
|
2014-05-22 15:35:26 +00:00
|
|
|
if err != nil {
|
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-07-01 09:26:45 +00:00
|
|
|
err = nil
|
|
|
|
//return nil, nil, nil, err
|
2014-06-13 10:45:11 +00:00
|
|
|
}
|
2014-05-22 15:35:26 +00:00
|
|
|
}
|
|
|
|
|
2014-06-13 11:06:27 +00:00
|
|
|
// Notify all subscribers
|
|
|
|
self.Ethereum.Reactor().Post("newTx:post", tx)
|
|
|
|
|
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)
|
|
|
|
accumelative := new(big.Int).Set(totalUsedGas.Add(totalUsedGas, txGas))
|
2014-05-22 15:35:26 +00:00
|
|
|
receipt := &Receipt{tx, ethutil.CopyBytes(state.Root().([]byte)), accumelative}
|
|
|
|
|
|
|
|
receipts = append(receipts, receipt)
|
2014-06-13 10:45:11 +00:00
|
|
|
handled = append(handled, tx)
|
2014-07-11 14:04:09 +00:00
|
|
|
|
|
|
|
if ethutil.Config.Diff {
|
|
|
|
state.CreateOutputForDiff()
|
|
|
|
}
|
2014-05-20 22:17:50 +00:00
|
|
|
}
|
2014-05-22 15:35:26 +00:00
|
|
|
|
2014-06-13 10:45:11 +00:00
|
|
|
parent.GasUsed = totalUsedGas
|
2014-06-11 09:40:40 +00:00
|
|
|
|
2014-06-13 10:45:11 +00:00
|
|
|
return receipts, handled, unhandled, err
|
2014-05-20 22:17:50 +00:00
|
|
|
}
|
|
|
|
|
2014-06-23 09:23:18 +00:00
|
|
|
func (sm *StateManager) Process(block *Block, dontReact bool) (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-02-14 22:56:09 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-06-23 09:23:18 +00:00
|
|
|
if !sm.bc.HasBlock(block.PrevHash) {
|
|
|
|
return ParentError(block.PrevHash)
|
|
|
|
}
|
|
|
|
|
2014-07-10 13:05:06 +00:00
|
|
|
sm.lastAttemptedBlock = block
|
|
|
|
|
2014-06-23 09:23:18 +00:00
|
|
|
var (
|
|
|
|
parent = sm.bc.GetBlock(block.PrevHash)
|
|
|
|
state = parent.State()
|
|
|
|
)
|
|
|
|
|
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-11 14:04:09 +00:00
|
|
|
if ethutil.Config.Diff {
|
|
|
|
fmt.Printf("## 0x%x 0x%x ##\n", block.Hash(), block.Number)
|
|
|
|
}
|
|
|
|
|
2014-06-23 09:23:18 +00:00
|
|
|
receipts, err := sm.ApplyDiff(state, parent, block)
|
2014-06-19 11:42:14 +00:00
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
if len(receipts) == len(block.Receipts()) {
|
|
|
|
for i, receipt := range block.Receipts() {
|
2014-07-04 13:32:10 +00:00
|
|
|
statelogger.Infof("diff (r) %v ~ %x <=> (c) %v ~ %x (%x)\n", receipt.CumulativeGasUsed, receipt.PostState[0:4], receipts[i].CumulativeGasUsed, receipts[i].PostState[0:4], receipt.Tx.Hash())
|
2014-06-19 11:42:14 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-06-23 11:54:10 +00:00
|
|
|
statelogger.Warnln("Unable to print receipt diff. Length didn't match", len(receipts), "for", len(block.Receipts()))
|
2014-06-19 11:42:14 +00:00
|
|
|
}
|
2014-07-04 13:32:10 +00:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
for i, receipt := range receipts {
|
|
|
|
gu := new(big.Int)
|
|
|
|
if i != 0 {
|
|
|
|
gu.Sub(receipt.CumulativeGasUsed, receipts[i-1].CumulativeGasUsed)
|
|
|
|
} else {
|
|
|
|
gu.Set(receipt.CumulativeGasUsed)
|
|
|
|
}
|
|
|
|
|
|
|
|
statelogger.Infof("[r] %v ~ %x (%x)\n", gu, receipt.PostState[0:4], receipt.Tx.Hash())
|
|
|
|
}
|
|
|
|
*/
|
2014-06-19 11:42:14 +00:00
|
|
|
}
|
|
|
|
}()
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-06-23 09:23:18 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-02-14 22:56:09 +00:00
|
|
|
// Block validation
|
2014-06-19 11:42:14 +00:00
|
|
|
if err = sm.ValidateBlock(block); err != nil {
|
2014-06-23 11:54:10 +00:00
|
|
|
statelogger.Errorln("Error validating block:", err)
|
2014-02-14 22:56:09 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// I'm not sure, but I don't know if there should be thrown
|
|
|
|
// any errors at this time.
|
2014-06-19 11:42:14 +00:00
|
|
|
if err = sm.AccumelateRewards(state, block); err != nil {
|
2014-06-23 11:54:10 +00:00
|
|
|
statelogger.Errorln("Error accumulating reward", err)
|
2014-02-14 22:56:09 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-07-02 15:48:10 +00:00
|
|
|
if ethutil.Config.Paranoia {
|
|
|
|
valid, _ := ethtrie.ParanoiaCheck(state.trie)
|
|
|
|
if !valid {
|
2014-07-03 08:05:02 +00:00
|
|
|
err = fmt.Errorf("PARANOIA: World state trie corruption")
|
2014-07-02 15:48:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-17 12:07:52 +00:00
|
|
|
if !block.State().Cmp(state) {
|
2014-07-02 15:48:10 +00:00
|
|
|
|
2014-06-30 11:09:04 +00:00
|
|
|
err = fmt.Errorf("Invalid merkle root.\nrec: %x\nis: %x", block.State().trie.Root, state.trie.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-03-05 09:57:32 +00:00
|
|
|
if sm.CalculateTD(block) {
|
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-02-24 12:50:52 +00:00
|
|
|
// Add the block to the chain
|
2014-03-05 09:57:32 +00:00
|
|
|
sm.bc.Add(block)
|
2014-05-20 12:41:35 +00:00
|
|
|
sm.notifyChanges(state)
|
2014-02-24 12:50:52 +00:00
|
|
|
|
2014-06-23 11:54:10 +00:00
|
|
|
statelogger.Infof("Added block #%d (%x)\n", block.Number, block.Hash())
|
2014-03-20 10:20:29 +00:00
|
|
|
if dontReact == false {
|
|
|
|
sm.Ethereum.Reactor().Post("newBlock", block)
|
2014-04-30 12:43:32 +00:00
|
|
|
|
2014-05-17 12:07:52 +00:00
|
|
|
state.manifest.Reset()
|
2014-03-20 10:20:29 +00:00
|
|
|
}
|
2014-05-13 15:51:33 +00:00
|
|
|
|
|
|
|
sm.Ethereum.Broadcast(ethwire.MsgBlockTy, []interface{}{block.Value().Val})
|
2014-05-14 14:29:34 +00:00
|
|
|
|
2014-05-17 12:07:52 +00:00
|
|
|
sm.Ethereum.TxPool().RemoveInvalid(state)
|
2014-02-14 22:56:09 +00:00
|
|
|
} else {
|
2014-06-23 11:54:10 +00:00
|
|
|
statelogger.Errorln("total diff failed")
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2014-06-23 09:23:18 +00:00
|
|
|
|
|
|
|
func (sm *StateManager) ApplyDiff(state *State, parent, block *Block) (receipts Receipts, err error) {
|
|
|
|
coinbase := state.GetOrNewStateObject(block.Coinbase)
|
|
|
|
coinbase.SetGasPool(block.CalcGasLimit(parent))
|
|
|
|
|
|
|
|
// Process the transactions on to current block
|
2014-06-30 18:03:31 +00:00
|
|
|
receipts, _, _, err = sm.ProcessTransactions(coinbase, state, block, parent, block.Transactions())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-06-23 09:23:18 +00:00
|
|
|
|
|
|
|
return receipts, nil
|
|
|
|
}
|
|
|
|
|
2014-03-05 09:57:32 +00:00
|
|
|
func (sm *StateManager) CalculateTD(block *Block) 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-02-14 22:56:09 +00:00
|
|
|
// Set the new total difficulty back to the block chain
|
2014-03-05 09:57:32 +00:00
|
|
|
sm.bc.SetTotalDifficulty(td)
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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-03-05 09:57:32 +00:00
|
|
|
func (sm *StateManager) ValidateBlock(block *Block) error {
|
2014-02-14 22:56:09 +00:00
|
|
|
// TODO
|
|
|
|
// 2. Check if the difficulty is correct
|
|
|
|
|
|
|
|
// Check each uncle's previous hash. In order for it to be valid
|
|
|
|
// is if it has the same block hash as the current
|
2014-03-05 09:57:32 +00:00
|
|
|
previousBlock := sm.bc.GetBlock(block.PrevHash)
|
2014-02-14 22:56:09 +00:00
|
|
|
for _, uncle := range block.Uncles {
|
|
|
|
if bytes.Compare(uncle.PrevHash, previousBlock.PrevHash) != 0 {
|
|
|
|
return ValidationError("Mismatch uncle's previous hash. Expected %x, got %x", previousBlock.PrevHash, uncle.PrevHash)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-05 09:57:32 +00:00
|
|
|
diff := block.Time - sm.bc.CurrentBlock.Time
|
2014-02-14 22:56:09 +00:00
|
|
|
if diff < 0 {
|
|
|
|
return ValidationError("Block timestamp less then prev block %v", diff)
|
|
|
|
}
|
|
|
|
|
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-02-18 00:33:26 +00:00
|
|
|
func CalculateBlockReward(block *Block, uncleLength int) *big.Int {
|
|
|
|
base := new(big.Int)
|
|
|
|
for i := 0; i < uncleLength; i++ {
|
|
|
|
base.Add(base, UncleInclusionReward)
|
|
|
|
}
|
2014-05-22 15:35:26 +00:00
|
|
|
|
2014-02-18 00:33:26 +00:00
|
|
|
return base.Add(base, BlockReward)
|
|
|
|
}
|
|
|
|
|
|
|
|
func CalculateUncleReward(block *Block) *big.Int {
|
|
|
|
return UncleReward
|
|
|
|
}
|
|
|
|
|
2014-05-17 12:07:52 +00:00
|
|
|
func (sm *StateManager) AccumelateRewards(state *State, block *Block) error {
|
2014-04-16 02:06:51 +00:00
|
|
|
// Get the account associated with the coinbase
|
2014-05-17 12:07:52 +00:00
|
|
|
account := state.GetAccount(block.Coinbase)
|
2014-02-14 22:56:09 +00:00
|
|
|
// Reward amount of ether to the coinbase address
|
2014-04-16 02:06:51 +00:00
|
|
|
account.AddAmount(CalculateBlockReward(block, len(block.Uncles)))
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-04-09 14:04:36 +00:00
|
|
|
addr := make([]byte, len(block.Coinbase))
|
|
|
|
copy(addr, block.Coinbase)
|
2014-05-17 12:07:52 +00:00
|
|
|
state.UpdateStateObject(account)
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-02-18 00:33:26 +00:00
|
|
|
for _, uncle := range block.Uncles {
|
2014-05-17 12:07:52 +00:00
|
|
|
uncleAccount := state.GetAccount(uncle.Coinbase)
|
2014-04-16 02:06:51 +00:00
|
|
|
uncleAccount.AddAmount(CalculateUncleReward(uncle))
|
2014-02-18 00:33:26 +00:00
|
|
|
|
2014-05-17 12:07:52 +00:00
|
|
|
state.UpdateStateObject(uncleAccount)
|
2014-02-18 00:33:26 +00:00
|
|
|
}
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-03-05 09:57:32 +00:00
|
|
|
func (sm *StateManager) Stop() {
|
|
|
|
sm.bc.Stop()
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-05-17 12:07:52 +00:00
|
|
|
func (sm *StateManager) notifyChanges(state *State) {
|
|
|
|
for addr, stateObject := range state.manifest.objectChanges {
|
2014-04-30 12:43:32 +00:00
|
|
|
sm.Ethereum.Reactor().Post("object:"+addr, stateObject)
|
2014-04-25 23:47:55 +00:00
|
|
|
}
|
2014-04-30 12:43:32 +00:00
|
|
|
|
2014-05-17 12:07:52 +00:00
|
|
|
for stateObjectAddr, mappedObjects := range state.manifest.storageChanges {
|
2014-04-30 12:43:32 +00:00
|
|
|
for addr, value := range mappedObjects {
|
2014-05-05 09:56:25 +00:00
|
|
|
sm.Ethereum.Reactor().Post("storage:"+stateObjectAddr+":"+addr, &StorageState{[]byte(stateObjectAddr), []byte(addr), value})
|
2014-04-30 12:43:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|