| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- package core
- import (
- "fmt"
- "math/big"
- "github.com/ethereum/go-ethereum/common"
- "github.com/ethereum/go-ethereum/core/types"
- "github.com/ethereum/go-ethereum/event"
- "github.com/ethereum/go-ethereum/pow"
- "github.com/ethereum/go-ethereum/state"
- )
- // So we can generate blocks easily
- type FakePow struct{}
- func (f FakePow) Search(block pow.Block, stop <-chan struct{}) (uint64, []byte, []byte) {
- return 0, nil, nil
- }
- func (f FakePow) Verify(block pow.Block) bool { return true }
- func (f FakePow) GetHashrate() int64 { return 0 }
- func (f FakePow) Turbo(bool) {}
- // So we can deterministically seed different blockchains
- var (
- CanonicalSeed = 1
- ForkSeed = 2
- )
- // Utility functions for making chains on the fly
- // Exposed for sake of testing from other packages (eg. go-ethash)
- func NewBlockFromParent(addr common.Address, parent *types.Block) *types.Block {
- return newBlockFromParent(addr, parent)
- }
- func MakeBlock(bman *BlockProcessor, parent *types.Block, i int, db common.Database, seed int) *types.Block {
- return makeBlock(bman, parent, i, db, seed)
- }
- func MakeChain(bman *BlockProcessor, parent *types.Block, max int, db common.Database, seed int) types.Blocks {
- return makeChain(bman, parent, max, db, seed)
- }
- func NewChainMan(block *types.Block, eventMux *event.TypeMux, db common.Database) *ChainManager {
- return newChainManager(block, eventMux, db)
- }
- func NewBlockProc(db common.Database, txpool *TxPool, cman *ChainManager, eventMux *event.TypeMux) *BlockProcessor {
- return newBlockProcessor(db, txpool, cman, eventMux)
- }
- func NewCanonical(n int, db common.Database) (*BlockProcessor, error) {
- return newCanonical(n, db)
- }
- // block time is fixed at 10 seconds
- func newBlockFromParent(addr common.Address, parent *types.Block) *types.Block {
- block := types.NewBlock(parent.Hash(), addr, parent.Root(), common.BigPow(2, 32), 0, "")
- block.SetUncles(nil)
- block.SetTransactions(nil)
- block.SetReceipts(nil)
- header := block.Header()
- header.Difficulty = CalcDifficulty(block.Header(), parent.Header())
- header.Number = new(big.Int).Add(parent.Header().Number, common.Big1)
- header.Time = parent.Header().Time + 10
- header.GasLimit = CalcGasLimit(parent, block)
- block.Td = parent.Td
- return block
- }
- // Actually make a block by simulating what miner would do
- // we seed chains by the first byte of the coinbase
- func makeBlock(bman *BlockProcessor, parent *types.Block, i int, db common.Database, seed int) *types.Block {
- var addr common.Address
- addr[0], addr[19] = byte(seed), byte(i)
- block := newBlockFromParent(addr, parent)
- state := state.New(block.Root(), db)
- cbase := state.GetOrNewStateObject(addr)
- cbase.SetGasPool(CalcGasLimit(parent, block))
- cbase.AddBalance(BlockReward)
- state.Update(common.Big0)
- block.SetRoot(state.Root())
- return block
- }
- // Make a chain with real blocks
- // Runs ProcessWithParent to get proper state roots
- func makeChain(bman *BlockProcessor, parent *types.Block, max int, db common.Database, seed int) types.Blocks {
- bman.bc.currentBlock = parent
- blocks := make(types.Blocks, max)
- for i := 0; i < max; i++ {
- block := makeBlock(bman, parent, i, db, seed)
- td, err := bman.processWithParent(block, parent)
- if err != nil {
- fmt.Println("process with parent failed", err)
- panic(err)
- }
- block.Td = td
- blocks[i] = block
- parent = block
- }
- return blocks
- }
- // Create a new chain manager starting from given block
- // Effectively a fork factory
- func newChainManager(block *types.Block, eventMux *event.TypeMux, db common.Database) *ChainManager {
- bc := &ChainManager{blockDb: db, stateDb: db, genesisBlock: GenesisBlock(db), eventMux: eventMux}
- if block == nil {
- bc.Reset()
- } else {
- bc.currentBlock = block
- bc.td = block.Td
- }
- return bc
- }
- // block processor with fake pow
- func newBlockProcessor(db common.Database, txpool *TxPool, cman *ChainManager, eventMux *event.TypeMux) *BlockProcessor {
- bman := NewBlockProcessor(db, db, FakePow{}, txpool, newChainManager(nil, eventMux, db), eventMux)
- return bman
- }
- // Make a new, deterministic canonical chain by running InsertChain
- // on result of makeChain
- func newCanonical(n int, db common.Database) (*BlockProcessor, error) {
- eventMux := &event.TypeMux{}
- txpool := NewTxPool(eventMux)
- bman := newBlockProcessor(db, txpool, newChainManager(nil, eventMux, db), eventMux)
- bman.bc.SetProcessor(bman)
- parent := bman.bc.CurrentBlock()
- if n == 0 {
- return bman, nil
- }
- lchain := makeChain(bman, parent, n, db, CanonicalSeed)
- err := bman.bc.InsertChain(lchain)
- return bman, err
- }
|