github.com/intfoundation/intchain@v0.0.0-20220727031208-4316ad31ca73/core/chain_makers.go (about)

     1  // Copyright 2015 The go-ethereum Authors
     2  // This file is part of the go-ethereum library.
     3  //
     4  // The go-ethereum library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The go-ethereum library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package core
    18  
    19  import (
    20  	"fmt"
    21  	"math/big"
    22  
    23  	"github.com/intfoundation/intchain/common"
    24  	"github.com/intfoundation/intchain/consensus"
    25  	"github.com/intfoundation/intchain/core/state"
    26  	"github.com/intfoundation/intchain/core/types"
    27  	"github.com/intfoundation/intchain/core/vm"
    28  	"github.com/intfoundation/intchain/intdb"
    29  	"github.com/intfoundation/intchain/params"
    30  )
    31  
    32  // So we can deterministically seed different blockchains
    33  var (
    34  	canonicalSeed = 1
    35  	forkSeed      = 2
    36  )
    37  
    38  // BlockGen creates blocks for testing.
    39  // See GenerateChain for a detailed explanation.
    40  type BlockGen struct {
    41  	i           int
    42  	parent      *types.Block
    43  	chain       []*types.Block
    44  	chainReader consensus.ChainReader
    45  	header      *types.Header
    46  	statedb     *state.StateDB
    47  
    48  	gasPool  *GasPool
    49  	txs      []*types.Transaction
    50  	receipts []*types.Receipt
    51  	uncles   []*types.Header
    52  
    53  	config *params.ChainConfig
    54  	engine consensus.Engine
    55  }
    56  
    57  // SetCoinbase sets the coinbase of the generated block.
    58  // It can be called at most once.
    59  func (b *BlockGen) SetCoinbase(addr common.Address) {
    60  	if b.gasPool != nil {
    61  		if len(b.txs) > 0 {
    62  			panic("coinbase must be set before adding transactions")
    63  		}
    64  		panic("coinbase can only be set once")
    65  	}
    66  	b.header.Coinbase = addr
    67  	b.gasPool = new(GasPool).AddGas(b.header.GasLimit)
    68  }
    69  
    70  // SetExtra sets the extra data field of the generated block.
    71  func (b *BlockGen) SetExtra(data []byte) {
    72  	b.header.Extra = data
    73  }
    74  
    75  // AddTx adds a transaction to the generated block. If no coinbase has
    76  // been set, the block's coinbase is set to the zero address.
    77  //
    78  // AddTx panics if the transaction cannot be executed. In addition to
    79  // the protocol-imposed limitations (gas limit, etc.), there are some
    80  // further limitations on the content of transactions that can be
    81  // added. Notably, contract code relying on the BLOCKHASH instruction
    82  // will panic during execution.
    83  func (b *BlockGen) AddTx(tx *types.Transaction) {
    84  	b.AddTxWithChain(nil, tx)
    85  }
    86  
    87  // AddTxWithChain adds a transaction to the generated block. If no coinbase has
    88  // been set, the block's coinbase is set to the zero address.
    89  //
    90  // AddTxWithChain panics if the transaction cannot be executed. In addition to
    91  // the protocol-imposed limitations (gas limit, etc.), there are some
    92  // further limitations on the content of transactions that can be
    93  // added. If contract code relies on the BLOCKHASH instruction,
    94  // the block in chain will be returned.
    95  func (b *BlockGen) AddTxWithChain(bc *BlockChain, tx *types.Transaction) {
    96  	if b.gasPool == nil {
    97  		b.SetCoinbase(common.Address{})
    98  	}
    99  	b.statedb.Prepare(tx.Hash(), common.Hash{}, len(b.txs))
   100  	receipt, err := ApplyTransaction(b.config, bc, &b.header.Coinbase, b.gasPool, b.statedb, b.header, tx, &b.header.GasUsed, vm.Config{})
   101  	if err != nil {
   102  		panic(err)
   103  	}
   104  	b.txs = append(b.txs, tx)
   105  	b.receipts = append(b.receipts, receipt)
   106  }
   107  
   108  // Number returns the block number of the block being generated.
   109  func (b *BlockGen) Number() *big.Int {
   110  	return new(big.Int).Set(b.header.Number)
   111  }
   112  
   113  // AddUncheckedReceipt forcefully adds a receipts to the block without a
   114  // backing transaction.
   115  //
   116  // AddUncheckedReceipt will cause consensus failures when used during real
   117  // chain processing. This is best used in conjunction with raw block insertion.
   118  func (b *BlockGen) AddUncheckedReceipt(receipt *types.Receipt) {
   119  	b.receipts = append(b.receipts, receipt)
   120  }
   121  
   122  // TxNonce returns the next valid transaction nonce for the
   123  // account at addr. It panics if the account does not exist.
   124  func (b *BlockGen) TxNonce(addr common.Address) uint64 {
   125  	if !b.statedb.Exist(addr) {
   126  		panic("account does not exist")
   127  	}
   128  	return b.statedb.GetNonce(addr)
   129  }
   130  
   131  // AddUncle adds an uncle header to the generated block.
   132  func (b *BlockGen) AddUncle(h *types.Header) {
   133  	b.uncles = append(b.uncles, h)
   134  }
   135  
   136  // PrevBlock returns a previously generated block by number. It panics if
   137  // num is greater or equal to the number of the block being generated.
   138  // For index -1, PrevBlock returns the parent block given to GenerateChain.
   139  func (b *BlockGen) PrevBlock(index int) *types.Block {
   140  	if index >= b.i {
   141  		panic("block index out of range")
   142  	}
   143  	if index == -1 {
   144  		return b.parent
   145  	}
   146  	return b.chain[index]
   147  }
   148  
   149  // OffsetTime modifies the time instance of a block, implicitly changing its
   150  // associated difficulty. It's useful to test scenarios where forking is not
   151  // tied to chain length directly.
   152  func (b *BlockGen) OffsetTime(seconds int64) {
   153  	b.header.Time.Add(b.header.Time, new(big.Int).SetInt64(seconds))
   154  	if b.header.Time.Cmp(b.parent.Header().Time) <= 0 {
   155  		panic("block time out of range")
   156  	}
   157  	b.header.Difficulty = b.engine.CalcDifficulty(b.chainReader, b.header.Time.Uint64(), b.parent.Header())
   158  }
   159  
   160  // GenerateChain creates a chain of n blocks. The first block's
   161  // parent will be the provided parent. db is used to store
   162  // intermediate states and should contain the parent's state trie.
   163  //
   164  // The generator function is called with a new block generator for
   165  // every block. Any transactions and uncles added to the generator
   166  // become part of the block. If gen is nil, the blocks will be empty
   167  // and their coinbase will be the zero address.
   168  //
   169  // Blocks created by GenerateChain do not contain valid proof of work
   170  // values. Inserting them into BlockChain requires use of FakePow or
   171  // a similar non-validating proof of work implementation.
   172  func GenerateChain(config *params.ChainConfig, parent *types.Block, engine consensus.Engine, db intdb.Database, n int, gen func(int, *BlockGen)) ([]*types.Block, []types.Receipts) {
   173  	if config == nil {
   174  		config = params.TestChainConfig
   175  	}
   176  	blocks, receipts := make(types.Blocks, n), make([]types.Receipts, n)
   177  	genblock := func(i int, parent *types.Block, statedb *state.StateDB) (*types.Block, types.Receipts) {
   178  		// TODO(karalabe): This is needed for clique, which depends on multiple blocks.
   179  		// It's nonetheless ugly to spin up a blockchain here. Get rid of this somehow.
   180  		blockchain, _ := NewBlockChain(db, nil, config, engine, vm.Config{}, nil)
   181  		defer blockchain.Stop()
   182  
   183  		b := &BlockGen{i: i, parent: parent, chain: blocks, chainReader: blockchain, statedb: statedb, config: config, engine: engine}
   184  		b.header = makeHeader(b.chainReader, parent, statedb, b.engine)
   185  
   186  		//if config.DAOForkSupport && config.DAOForkBlock != nil && config.DAOForkBlock.Cmp(b.header.Number) == 0 {
   187  		//	misc.ApplyDAOHardFork(statedb)
   188  		//}
   189  		// Execute any user modifications to the block and finalize it
   190  		if gen != nil {
   191  			gen(i, b)
   192  		}
   193  
   194  		if b.engine != nil {
   195  			block, _ := b.engine.Finalize(b.chainReader, b.header, statedb, b.txs, nil, b.uncles, b.receipts, nil)
   196  			// Write state changes to db
   197  			root, err := statedb.Commit(config.IsEIP158(b.header.Number))
   198  			if err != nil {
   199  				panic(fmt.Sprintf("state write error: %v", err))
   200  			}
   201  			if err := statedb.Database().TrieDB().Commit(root, false); err != nil {
   202  				panic(fmt.Sprintf("trie write error: %v", err))
   203  			}
   204  			return block, b.receipts
   205  		}
   206  		return nil, nil
   207  	}
   208  	for i := 0; i < n; i++ {
   209  		statedb, err := state.New(parent.Root(), state.NewDatabase(db))
   210  		if err != nil {
   211  			panic(err)
   212  		}
   213  		block, receipt := genblock(i, parent, statedb)
   214  		blocks[i] = block
   215  		receipts[i] = receipt
   216  		parent = block
   217  	}
   218  	return blocks, receipts
   219  }
   220  
   221  func makeHeader(chain consensus.ChainReader, parent *types.Block, state *state.StateDB, engine consensus.Engine) *types.Header {
   222  	var time *big.Int
   223  	if parent.Time() == 0 {
   224  		time = big.NewInt(10)
   225  	} else {
   226  		time = new(big.Int).SetUint64(parent.Time() + 10) // block time is fixed at 10 seconds
   227  	}
   228  
   229  	return &types.Header{
   230  		Root:       state.IntermediateRoot(chain.Config().IsEIP158(parent.Number())),
   231  		ParentHash: parent.Hash(),
   232  		Coinbase:   parent.Coinbase(),
   233  		Difficulty: engine.CalcDifficulty(chain, time.Uint64(), &types.Header{
   234  			Number:     parent.Number(),
   235  			Time:       new(big.Int).Sub(time, big.NewInt(10)),
   236  			Difficulty: parent.Difficulty(),
   237  			UncleHash:  parent.UncleHash(),
   238  		}),
   239  		GasLimit: CalcGasLimit(parent, parent.GasLimit(), parent.GasLimit()),
   240  		Number:   new(big.Int).Add(parent.Number(), common.Big1),
   241  		Time:     time,
   242  	}
   243  }
   244  
   245  // makeHeaderChain creates a deterministic chain of headers rooted at parent.
   246  func makeHeaderChain(parent *types.Header, n int, engine consensus.Engine, db intdb.Database, seed int) []*types.Header {
   247  	blocks := makeBlockChain(types.NewBlockWithHeader(parent), n, engine, db, seed)
   248  	headers := make([]*types.Header, len(blocks))
   249  	for i, block := range blocks {
   250  		headers[i] = block.Header()
   251  	}
   252  	return headers
   253  }
   254  
   255  // makeBlockChain creates a deterministic chain of blocks rooted at parent.
   256  func makeBlockChain(parent *types.Block, n int, engine consensus.Engine, db intdb.Database, seed int) []*types.Block {
   257  	blocks, _ := GenerateChain(params.TestChainConfig, parent, engine, db, n, func(i int, b *BlockGen) {
   258  		b.SetCoinbase(common.Address{0: byte(seed), 19: byte(i)})
   259  	})
   260  	return blocks
   261  }