2014-12-04 09:28:02 +00:00
|
|
|
package core
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2014-06-30 11:09:04 +00:00
|
|
|
"fmt"
|
2014-08-08 13:36:59 +00:00
|
|
|
"math/big"
|
|
|
|
"sync"
|
2015-01-21 23:24:30 +00:00
|
|
|
"time"
|
2014-08-08 13:36:59 +00:00
|
|
|
|
2014-12-04 09:28:02 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
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-12-10 15:45:16 +00:00
|
|
|
"github.com/ethereum/go-ethereum/pow"
|
|
|
|
"github.com/ethereum/go-ethereum/pow/ezp"
|
2014-10-31 13:43:14 +00:00
|
|
|
"github.com/ethereum/go-ethereum/state"
|
2014-12-23 12:48:44 +00:00
|
|
|
"gopkg.in/fatih/set.v0"
|
2014-02-14 22:56:09 +00:00
|
|
|
)
|
|
|
|
|
2015-02-05 19:55:03 +00:00
|
|
|
type PendingBlockEvent struct {
|
|
|
|
Block *types.Block
|
|
|
|
}
|
|
|
|
|
2014-10-31 11:56:05 +00:00
|
|
|
var statelogger = logger.NewLogger("BLOCK")
|
2014-06-23 11:54:10 +00:00
|
|
|
|
2015-01-04 23:18:44 +00:00
|
|
|
type BlockProcessor struct {
|
2015-01-07 12:17:48 +00:00
|
|
|
db ethutil.Database
|
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-12-10 15:45:16 +00:00
|
|
|
Pow pow.PoW
|
2014-12-18 11:18:19 +00:00
|
|
|
|
|
|
|
txpool *TxPool
|
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.
|
2014-11-18 15:58:22 +00:00
|
|
|
lastAttemptedBlock *types.Block
|
2014-09-29 10:57:51 +00:00
|
|
|
|
2014-10-13 23:58:31 +00:00
|
|
|
events event.Subscription
|
2014-12-10 19:26:55 +00:00
|
|
|
|
|
|
|
eventMux *event.TypeMux
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2015-01-07 12:17:48 +00:00
|
|
|
func NewBlockProcessor(db ethutil.Database, txpool *TxPool, chainManager *ChainManager, eventMux *event.TypeMux) *BlockProcessor {
|
2015-01-04 23:18:44 +00:00
|
|
|
sm := &BlockProcessor{
|
2015-01-07 12:17:48 +00:00
|
|
|
db: db,
|
2014-12-10 19:26:55 +00:00
|
|
|
mem: make(map[string]*big.Int),
|
|
|
|
Pow: ezp.New(),
|
2014-12-18 11:18:19 +00:00
|
|
|
bc: chainManager,
|
|
|
|
eventMux: eventMux,
|
|
|
|
txpool: txpool,
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2015-01-04 23:18:44 +00:00
|
|
|
func (sm *BlockProcessor) TransitionState(statedb *state.StateDB, parent, block *types.Block) (receipts types.Receipts, err error) {
|
2014-12-23 12:48:44 +00:00
|
|
|
coinbase := statedb.GetOrNewStateObject(block.Header().Coinbase)
|
|
|
|
coinbase.SetGasPool(CalcGasLimit(parent, block))
|
2014-12-02 21:37:45 +00:00
|
|
|
|
2015-01-05 10:22:02 +00:00
|
|
|
// Process the transactions on to parent state
|
2014-12-04 15:44:43 +00:00
|
|
|
receipts, _, _, _, err = sm.ApplyTransactions(coinbase, statedb, block, block.Transactions(), false)
|
2014-12-02 21:37:45 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return receipts, nil
|
|
|
|
}
|
|
|
|
|
2015-02-04 13:52:59 +00:00
|
|
|
func (self *BlockProcessor) ApplyTransaction(coinbase *state.StateObject, state *state.StateDB, block *types.Block, tx *types.Transaction, usedGas *big.Int, transientProcess bool) (*types.Receipt, *big.Int, error) {
|
|
|
|
// If we are mining this block and validating we want to set the logs back to 0
|
|
|
|
state.EmptyLogs()
|
|
|
|
|
|
|
|
txGas := new(big.Int).Set(tx.Gas())
|
|
|
|
|
|
|
|
cb := state.GetStateObject(coinbase.Address())
|
|
|
|
st := NewStateTransition(NewEnv(state, self.bc, tx, block), tx, cb)
|
|
|
|
_, err := st.TransitionState()
|
|
|
|
|
|
|
|
txGas.Sub(txGas, st.gas)
|
|
|
|
|
|
|
|
// Update the state with pending changes
|
|
|
|
state.Update(txGas)
|
|
|
|
|
|
|
|
cumulative := new(big.Int).Set(usedGas.Add(usedGas, txGas))
|
|
|
|
receipt := types.NewReceipt(state.Root(), cumulative)
|
|
|
|
receipt.SetLogs(state.Logs())
|
|
|
|
receipt.Bloom = types.CreateBloom(types.Receipts{receipt})
|
|
|
|
chainlogger.Debugln(receipt)
|
|
|
|
|
|
|
|
// Notify all subscribers
|
|
|
|
if !transientProcess {
|
|
|
|
go self.eventMux.Post(TxPostEvent{tx})
|
|
|
|
}
|
|
|
|
|
2015-02-04 23:05:47 +00:00
|
|
|
go self.eventMux.Post(state.Logs())
|
|
|
|
|
2015-02-04 13:52:59 +00:00
|
|
|
return receipt, txGas, err
|
|
|
|
}
|
|
|
|
|
2015-01-04 23:18:44 +00:00
|
|
|
func (self *BlockProcessor) ApplyTransactions(coinbase *state.StateObject, state *state.StateDB, block *types.Block, txs types.Transactions, transientProcess bool) (types.Receipts, types.Transactions, types.Transactions, types.Transactions, error) {
|
2014-06-13 10:45:11 +00:00
|
|
|
var (
|
2014-11-18 15:58:22 +00:00
|
|
|
receipts types.Receipts
|
|
|
|
handled, unhandled types.Transactions
|
|
|
|
erroneous types.Transactions
|
2014-06-13 10:45:11 +00:00
|
|
|
totalUsedGas = big.NewInt(0)
|
|
|
|
err error
|
2014-12-02 21:37:45 +00:00
|
|
|
cumulativeSum = new(big.Int)
|
2014-06-13 10:45:11 +00:00
|
|
|
)
|
|
|
|
|
2015-02-05 22:42:12 +00:00
|
|
|
for _, tx := range txs {
|
2015-02-04 13:52:59 +00:00
|
|
|
receipt, txGas, err := self.ApplyTransaction(coinbase, state, block, tx, totalUsedGas, transientProcess)
|
2014-05-22 15:35:26 +00:00
|
|
|
if err != nil {
|
2014-06-13 10:45:11 +00:00
|
|
|
switch {
|
|
|
|
case IsNonceErr(err):
|
2015-02-05 22:42:12 +00:00
|
|
|
return nil, nil, nil, nil, err
|
2014-06-13 10:45:11 +00:00
|
|
|
case IsGasLimitErr(err):
|
2015-02-05 22:42:12 +00:00
|
|
|
return nil, nil, nil, nil, err
|
2014-06-13 10:45:11 +00:00
|
|
|
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-06-13 10:45:11 +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
|
|
|
|
2015-02-04 13:52:59 +00:00
|
|
|
cumulativeSum.Add(cumulativeSum, new(big.Int).Mul(txGas, tx.GasPrice()))
|
2014-05-20 22:17:50 +00:00
|
|
|
}
|
2014-05-22 15:35:26 +00:00
|
|
|
|
2014-12-02 21:37:45 +00:00
|
|
|
block.Reward = cumulativeSum
|
2014-12-23 12:48:44 +00:00
|
|
|
block.Header().GasUsed = totalUsedGas
|
2014-06-11 09:40:40 +00:00
|
|
|
|
2015-02-05 19:55:03 +00:00
|
|
|
if transientProcess {
|
|
|
|
go self.eventMux.Post(PendingBlockEvent{block})
|
|
|
|
}
|
|
|
|
|
2014-10-27 15:52:58 +00:00
|
|
|
return receipts, handled, unhandled, erroneous, err
|
2014-05-20 22:17:50 +00:00
|
|
|
}
|
|
|
|
|
2015-02-04 23:05:47 +00:00
|
|
|
func (sm *BlockProcessor) Process(block *types.Block) (td *big.Int, 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-12-23 12:48:44 +00:00
|
|
|
header := block.Header()
|
|
|
|
if sm.bc.HasBlock(header.Hash()) {
|
2015-02-04 23:05:47 +00:00
|
|
|
return nil, &KnownBlockError{header.Number, header.Hash()}
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-12-23 12:48:44 +00:00
|
|
|
if !sm.bc.HasBlock(header.ParentHash) {
|
2015-02-04 23:05:47 +00:00
|
|
|
return nil, ParentError(header.ParentHash)
|
2014-06-23 09:23:18 +00:00
|
|
|
}
|
2014-12-23 12:48:44 +00:00
|
|
|
parent := sm.bc.GetBlock(header.ParentHash)
|
2014-11-04 11:46:33 +00:00
|
|
|
|
|
|
|
return sm.ProcessWithParent(block, parent)
|
|
|
|
}
|
2014-06-23 09:23:18 +00:00
|
|
|
|
2015-02-04 23:05:47 +00:00
|
|
|
func (sm *BlockProcessor) ProcessWithParent(block, parent *types.Block) (td *big.Int, err error) {
|
2014-07-10 13:05:06 +00:00
|
|
|
sm.lastAttemptedBlock = block
|
|
|
|
|
2015-01-07 12:17:48 +00:00
|
|
|
state := state.New(parent.Root(), sm.db)
|
|
|
|
//state := state.New(parent.Trie().Copy())
|
2014-06-23 09:23:18 +00:00
|
|
|
|
2014-12-04 14:13:29 +00:00
|
|
|
// Block validation
|
|
|
|
if err = sm.ValidateBlock(block, parent); err != nil {
|
|
|
|
return
|
2014-07-11 14:04:09 +00:00
|
|
|
}
|
|
|
|
|
2014-12-04 22:54:07 +00:00
|
|
|
receipts, err := sm.TransitionState(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-12-23 12:48:44 +00:00
|
|
|
header := block.Header()
|
|
|
|
|
2014-12-05 11:32:47 +00:00
|
|
|
rbloom := types.CreateBloom(receipts)
|
2014-12-23 12:48:44 +00:00
|
|
|
if bytes.Compare(rbloom, header.Bloom) != 0 {
|
2014-12-05 11:32:47 +00:00
|
|
|
err = fmt.Errorf("unable to replicate block's bloom=%x", rbloom)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-18 15:58:22 +00:00
|
|
|
txSha := types.DeriveSha(block.Transactions())
|
2014-12-23 12:48:44 +00:00
|
|
|
if bytes.Compare(txSha, header.TxHash) != 0 {
|
|
|
|
err = fmt.Errorf("validating transaction root. received=%x got=%x", header.TxHash, txSha)
|
2014-11-12 00:36:36 +00:00
|
|
|
return
|
|
|
|
}
|
2014-10-29 09:34:40 +00:00
|
|
|
|
2014-12-04 22:54:07 +00:00
|
|
|
receiptSha := types.DeriveSha(receipts)
|
2014-12-23 12:48:44 +00:00
|
|
|
if bytes.Compare(receiptSha, header.ReceiptHash) != 0 {
|
2014-12-23 17:35:36 +00:00
|
|
|
fmt.Println("receipts", receipts)
|
2014-12-23 12:48:44 +00:00
|
|
|
err = fmt.Errorf("validating receipt root. received=%x got=%x", header.ReceiptHash, receiptSha)
|
2014-12-04 22:54:07 +00:00
|
|
|
return
|
|
|
|
}
|
2014-07-21 10:21:34 +00:00
|
|
|
|
2015-02-03 22:09:39 +00:00
|
|
|
if err = sm.AccumulateRewards(state, block, parent); err != nil {
|
2014-11-10 12:27:24 +00:00
|
|
|
return
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-12-01 19:18:09 +00:00
|
|
|
state.Update(ethutil.Big0)
|
2014-09-15 13:42:12 +00:00
|
|
|
|
2014-12-23 12:48:44 +00:00
|
|
|
if !bytes.Equal(header.Root, state.Root()) {
|
|
|
|
err = fmt.Errorf("invalid merkle root. received=%x got=%x", header.Root, state.Root())
|
2014-06-19 11:42:14 +00:00
|
|
|
return
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2015-01-09 21:42:36 +00:00
|
|
|
// Calculate the td for this block
|
|
|
|
td = CalculateTD(block, parent)
|
2015-02-03 04:02:00 +00:00
|
|
|
// Sync the current block's state to the database
|
2015-01-09 21:42:36 +00:00
|
|
|
state.Sync()
|
|
|
|
// Set the block hashes for the current messages
|
|
|
|
state.Manifest().SetHash(block.Hash())
|
|
|
|
// Reset the manifest XXX We need this?
|
|
|
|
state.Manifest().Reset()
|
|
|
|
// Remove transactions from the pool
|
|
|
|
sm.txpool.RemoveSet(block.Transactions())
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2015-01-09 21:42:36 +00:00
|
|
|
chainlogger.Infof("processed block #%d (%x...)\n", header.Number, block.Hash()[0:4])
|
2015-01-03 16:18:43 +00:00
|
|
|
|
2015-02-04 23:05:47 +00:00
|
|
|
return td, nil
|
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)
|
2015-01-04 23:18:44 +00:00
|
|
|
func (sm *BlockProcessor) ValidateBlock(block, parent *types.Block) error {
|
2015-01-05 23:17:05 +00:00
|
|
|
if len(block.Header().Extra) > 1024 {
|
|
|
|
return fmt.Errorf("Block extra data too long (%d)", len(block.Header().Extra))
|
|
|
|
}
|
|
|
|
|
2014-10-10 15:00:06 +00:00
|
|
|
expd := CalcDifficulty(block, parent)
|
2015-01-18 14:45:54 +00:00
|
|
|
if expd.Cmp(block.Header().Difficulty) != 0 {
|
2014-12-23 12:48:44 +00:00
|
|
|
return fmt.Errorf("Difficulty check failed for block %v, %v", block.Header().Difficulty, expd)
|
2014-10-10 15:00:06 +00:00
|
|
|
}
|
|
|
|
|
2015-02-05 22:42:12 +00:00
|
|
|
if block.Time() < parent.Time() {
|
|
|
|
return ValidationError("Block timestamp not after prev block (%v - %v)", block.Header().Time, parent.Header().Time)
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2015-01-21 23:24:30 +00:00
|
|
|
if block.Time() > time.Now().Unix() {
|
|
|
|
return fmt.Errorf("block time is in the future")
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Verify the nonce of the block. Return an error if it's not valid
|
2015-01-21 23:24:30 +00:00
|
|
|
if !sm.Pow.Verify(block) {
|
2014-12-23 12:48:44 +00:00
|
|
|
return ValidationError("Block's nonce is invalid (= %v)", ethutil.Bytes2Hex(block.Header().Nonce))
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-02-03 22:09:39 +00:00
|
|
|
func (sm *BlockProcessor) AccumulateRewards(statedb *state.StateDB, block, parent *types.Block) error {
|
2014-09-15 13:42:12 +00:00
|
|
|
reward := new(big.Int).Set(BlockReward)
|
2014-05-22 15:35:26 +00:00
|
|
|
|
2015-01-09 16:38:35 +00:00
|
|
|
ancestors := set.New()
|
2015-01-13 13:57:51 +00:00
|
|
|
for _, ancestor := range sm.bc.GetAncestors(block, 7) {
|
2015-01-09 16:38:35 +00:00
|
|
|
ancestors.Add(string(ancestor.Hash()))
|
2014-12-23 12:48:44 +00:00
|
|
|
}
|
|
|
|
|
2015-01-09 16:38:35 +00:00
|
|
|
uncles := set.New()
|
|
|
|
uncles.Add(string(block.Hash()))
|
2014-12-23 12:48:44 +00:00
|
|
|
for _, uncle := range block.Uncles() {
|
2015-01-09 16:38:35 +00:00
|
|
|
if uncles.Has(string(uncle.Hash())) {
|
2014-09-14 23:11:01 +00:00
|
|
|
// Error not unique
|
|
|
|
return UncleError("Uncle not unique")
|
|
|
|
}
|
2015-01-09 16:38:35 +00:00
|
|
|
uncles.Add(string(uncle.Hash()))
|
2014-02-18 00:33:26 +00:00
|
|
|
|
2015-01-09 21:23:33 +00:00
|
|
|
if !ancestors.Has(string(uncle.ParentHash)) {
|
2014-12-23 12:48:44 +00:00
|
|
|
return UncleError(fmt.Sprintf("Uncle's parent unknown (%x)", uncle.ParentHash[0:4]))
|
2014-09-14 23:11:01 +00:00
|
|
|
}
|
2014-02-18 00:33:26 +00:00
|
|
|
|
2015-02-04 13:52:59 +00:00
|
|
|
if !sm.Pow.Verify(types.NewBlockWithHeader(uncle)) {
|
|
|
|
return ValidationError("Uncle's nonce is invalid (= %v)", ethutil.Bytes2Hex(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-12-02 21:37:45 +00:00
|
|
|
uncleAccount := statedb.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
|
2014-12-23 12:48:44 +00:00
|
|
|
account := statedb.GetAccount(block.Header().Coinbase)
|
2014-09-14 23:11:01 +00:00
|
|
|
// Reward amount of ether to the coinbase address
|
|
|
|
account.AddAmount(reward)
|
|
|
|
|
2014-02-14 22:56:09 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-01-04 23:18:44 +00:00
|
|
|
func (sm *BlockProcessor) GetMessages(block *types.Block) (messages []*state.Message, err error) {
|
2014-12-23 12:48:44 +00:00
|
|
|
if !sm.bc.HasBlock(block.Header().ParentHash) {
|
|
|
|
return nil, ParentError(block.Header().ParentHash)
|
2014-08-11 14:23:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sm.lastAttemptedBlock = block
|
|
|
|
|
|
|
|
var (
|
2014-12-23 12:48:44 +00:00
|
|
|
parent = sm.bc.GetBlock(block.Header().ParentHash)
|
2015-01-07 12:17:48 +00:00
|
|
|
//state = state.New(parent.Trie().Copy())
|
|
|
|
state = state.New(parent.Root(), sm.db)
|
2014-08-11 14:23:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
defer state.Reset()
|
|
|
|
|
2014-12-02 21:37:45 +00:00
|
|
|
sm.TransitionState(state, parent, block)
|
2015-02-03 22:09:39 +00:00
|
|
|
sm.AccumulateRewards(state, block, parent)
|
2014-08-11 14:23:38 +00:00
|
|
|
|
|
|
|
return state.Manifest().Messages, nil
|
2014-04-30 12:43:32 +00:00
|
|
|
}
|
2015-01-28 09:23:18 +00:00
|
|
|
|
|
|
|
func (sm *BlockProcessor) GetLogs(block *types.Block) (logs state.Logs, err error) {
|
|
|
|
if !sm.bc.HasBlock(block.Header().ParentHash) {
|
|
|
|
return nil, ParentError(block.Header().ParentHash)
|
|
|
|
}
|
|
|
|
|
|
|
|
sm.lastAttemptedBlock = block
|
|
|
|
|
|
|
|
var (
|
|
|
|
parent = sm.bc.GetBlock(block.Header().ParentHash)
|
|
|
|
//state = state.New(parent.Trie().Copy())
|
|
|
|
state = state.New(parent.Root(), sm.db)
|
|
|
|
)
|
|
|
|
|
|
|
|
defer state.Reset()
|
|
|
|
|
|
|
|
sm.TransitionState(state, parent, block)
|
2015-02-03 22:09:39 +00:00
|
|
|
sm.AccumulateRewards(state, block, parent)
|
2015-01-28 09:23:18 +00:00
|
|
|
|
|
|
|
return state.Logs(), nil
|
|
|
|
}
|