github.com/dominant-strategies/go-quai@v0.28.2/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/dominant-strategies/go-quai/common"
    24  	"github.com/dominant-strategies/go-quai/consensus"
    25  	"github.com/dominant-strategies/go-quai/consensus/misc"
    26  	"github.com/dominant-strategies/go-quai/core/state"
    27  	"github.com/dominant-strategies/go-quai/core/types"
    28  	"github.com/dominant-strategies/go-quai/core/vm"
    29  	"github.com/dominant-strategies/go-quai/ethdb"
    30  	"github.com/dominant-strategies/go-quai/params"
    31  )
    32  
    33  // BlockGen creates blocks for testing.
    34  // See GenerateChain for a detailed explanation.
    35  type BlockGen struct {
    36  	i       int
    37  	parent  *types.Block
    38  	chain   []*types.Block
    39  	header  *types.Header
    40  	statedb *state.StateDB
    41  
    42  	gasPool     *GasPool
    43  	txs         []*types.Transaction
    44  	receipts    []*types.Receipt
    45  	uncles      []*types.Header
    46  	etxs        []*types.Transaction
    47  	subManifest types.BlockManifest
    48  
    49  	config *params.ChainConfig
    50  	engine consensus.Engine
    51  }
    52  
    53  // SetCoinbase sets the coinbase of the generated block.
    54  // It can be called at most once.
    55  func (b *BlockGen) SetCoinbase(addr common.Address) {
    56  	if b.gasPool != nil {
    57  		if len(b.txs) > 0 {
    58  			panic("coinbase must be set before adding transactions")
    59  		}
    60  		panic("coinbase can only be set once")
    61  	}
    62  	b.header.SetCoinbase(addr)
    63  	b.gasPool = new(GasPool).AddGas(b.header.GasLimit())
    64  }
    65  
    66  // SetExtra sets the extra data field of the generated block.
    67  func (b *BlockGen) SetExtra(data []byte) {
    68  	b.header.SetExtra(data)
    69  }
    70  
    71  // SetNonce sets the nonce field of the generated block.
    72  func (b *BlockGen) SetNonce(nonce types.BlockNonce) {
    73  	b.header.SetNonce(nonce)
    74  }
    75  
    76  // SetDifficulty sets the difficulty field of the generated block. This method is
    77  // useful for Clique tests where the difficulty does not depend on time. For the
    78  // progpow tests, please use OffsetTime, which implicitly recalculates the diff.
    79  func (b *BlockGen) SetDifficulty(diff *big.Int) {
    80  	b.header.SetDifficulty(diff)
    81  }
    82  
    83  // AddTx adds a transaction to the generated block. If no coinbase has
    84  // been set, the block's coinbase is set to the zero address.
    85  //
    86  // AddTx panics if the transaction cannot be executed. In addition to
    87  // the protocol-imposed limitations (gas limit, etc.), there are some
    88  // further limitations on the content of transactions that can be
    89  // added. Notably, contract code relying on the BLOCKHASH instruction
    90  // will panic during execution.
    91  func (b *BlockGen) AddTx(tx *types.Transaction, etxRLimit, etxPLimit *int) {
    92  	b.AddTxWithChain(nil, tx, etxRLimit, etxPLimit)
    93  }
    94  
    95  // AddTxWithChain adds a transaction to the generated block. If no coinbase has
    96  // been set, the block's coinbase is set to the zero address.
    97  //
    98  // AddTxWithChain panics if the transaction cannot be executed. In addition to
    99  // the protocol-imposed limitations (gas limit, etc.), there are some
   100  // further limitations on the content of transactions that can be
   101  // added. If contract code relies on the BLOCKHASH instruction,
   102  // the block in chain will be returned.
   103  func (b *BlockGen) AddTxWithChain(hc *HeaderChain, tx *types.Transaction, etxRLimit, etxPLimit *int) {
   104  	if b.gasPool == nil {
   105  		b.SetCoinbase(common.Address{})
   106  	}
   107  	b.statedb.Prepare(tx.Hash(), len(b.txs))
   108  	coinbase := b.header.Coinbase()
   109  	gasUsed := b.header.GasUsed()
   110  	receipt, err := ApplyTransaction(b.config, hc, &coinbase, b.gasPool, b.statedb, b.header, tx, &gasUsed, vm.Config{}, etxRLimit, etxPLimit)
   111  	if err != nil {
   112  		panic(err)
   113  	}
   114  	b.txs = append(b.txs, tx)
   115  	b.receipts = append(b.receipts, receipt)
   116  }
   117  
   118  // GetBalance returns the balance of the given address at the generated block.
   119  func (b *BlockGen) GetBalance(addr common.Address) *big.Int {
   120  	internal, err := addr.InternalAddress()
   121  	if err != nil {
   122  		panic(err.Error())
   123  	}
   124  	return b.statedb.GetBalance(internal)
   125  }
   126  
   127  // AddUncheckedTx forcefully adds a transaction to the block without any
   128  // validation.
   129  //
   130  // AddUncheckedTx will cause consensus failures when used during real
   131  // chain processing. This is best used in conjunction with raw block insertion.
   132  func (b *BlockGen) AddUncheckedTx(tx *types.Transaction) {
   133  	b.txs = append(b.txs, tx)
   134  }
   135  
   136  // Number returns the block number of the block being generated.
   137  func (b *BlockGen) Number() *big.Int {
   138  	return new(big.Int).Set(b.header.Number())
   139  }
   140  
   141  // BaseFee returns the base fee of the block being generated.
   142  func (b *BlockGen) BaseFee() *big.Int {
   143  	return new(big.Int).Set(b.header.BaseFee())
   144  }
   145  
   146  // AddUncheckedReceipt forcefully adds a receipts to the block without a
   147  // backing transaction.
   148  //
   149  // AddUncheckedReceipt will cause consensus failures when used during real
   150  // chain processing. This is best used in conjunction with raw block insertion.
   151  func (b *BlockGen) AddUncheckedReceipt(receipt *types.Receipt) {
   152  	b.receipts = append(b.receipts, receipt)
   153  }
   154  
   155  // TxNonce returns the next valid transaction nonce for the
   156  // account at addr. It panics if the account does not exist.
   157  func (b *BlockGen) TxNonce(addr common.Address) uint64 {
   158  	internal, err := addr.InternalAddress()
   159  	if err != nil {
   160  		panic(err.Error())
   161  	}
   162  	if !b.statedb.Exist(internal) {
   163  		panic("account does not exist")
   164  	}
   165  	return b.statedb.GetNonce(internal)
   166  }
   167  
   168  // AddUncle adds an uncle header to the generated block.
   169  func (b *BlockGen) AddUncle(h *types.Header) {
   170  	b.uncles = append(b.uncles, h)
   171  }
   172  
   173  // PrevBlock returns a previously generated block by number. It panics if
   174  // num is greater or equal to the number of the block being generated.
   175  // For index -1, PrevBlock returns the parent block given to GenerateChain.
   176  func (b *BlockGen) PrevBlock(index int) *types.Block {
   177  	if index >= b.i {
   178  		panic(fmt.Errorf("block index %d out of range (%d,%d)", index, -1, b.i))
   179  	}
   180  	if index == -1 {
   181  		return b.parent
   182  	}
   183  	return b.chain[index]
   184  }
   185  
   186  // OffsetTime modifies the time instance of a block, implicitly changing its
   187  // associated difficulty. It's useful to test scenarios where forking is not
   188  // tied to chain length directly.
   189  func (b *BlockGen) OffsetTime(seconds int64) {
   190  	b.header.SetTime(b.header.Time() + uint64(seconds))
   191  	if b.header.Time() <= b.parent.Header().Time() {
   192  		panic("block time out of range")
   193  	}
   194  	chainreader := &fakeChainReader{config: b.config}
   195  	b.header.SetDifficulty(b.engine.CalcDifficulty(chainreader, b.parent.Header()))
   196  }
   197  
   198  // GenerateChain creates a chain of n blocks. The first block's
   199  // parent will be the provided parent. db is used to store
   200  // intermediate states and should contain the parent's state trie.
   201  //
   202  // The generator function is called with a new block generator for
   203  // every block. Any transactions and uncles added to the generator
   204  // become part of the block. If gen is nil, the blocks will be empty
   205  // and their coinbase will be the zero address.
   206  //
   207  // Blocks created by GenerateChain do not contain valid proof of work
   208  // values. Inserting them into BlockChain requires use of FakePow or
   209  // a similar non-validating proof of work implementation.
   210  func GenerateChain(config *params.ChainConfig, parent *types.Block, engine consensus.Engine, db ethdb.Database, n int, gen func(int, *BlockGen)) ([]*types.Block, []types.Receipts) {
   211  	if config == nil {
   212  		config = params.TestChainConfig
   213  	}
   214  	blocks, receipts := make(types.Blocks, n), make([]types.Receipts, n)
   215  	chainreader := &fakeChainReader{config: config}
   216  	genblock := func(i int, parent *types.Block, statedb *state.StateDB) (*types.Block, types.Receipts) {
   217  		b := &BlockGen{i: i, chain: blocks, parent: parent, statedb: statedb, config: config, engine: engine}
   218  		b.header = makeHeader(chainreader, parent, statedb, b.engine)
   219  
   220  		// Execute any user modifications to the block
   221  		if gen != nil {
   222  			gen(i, b)
   223  		}
   224  		if b.engine != nil {
   225  			// Finalize and seal the block
   226  			block, _ := b.engine.FinalizeAndAssemble(chainreader, b.header, statedb, b.txs, b.uncles, b.etxs, b.subManifest, b.receipts)
   227  
   228  			// Write state changes to db
   229  			root, err := statedb.Commit(true)
   230  			if err != nil {
   231  				panic(fmt.Sprintf("state write error: %v", err))
   232  			}
   233  			if err := statedb.Database().TrieDB().Commit(root, false, nil); err != nil {
   234  				panic(fmt.Sprintf("trie write error: %v", err))
   235  			}
   236  			return block, b.receipts
   237  		}
   238  		return nil, nil
   239  	}
   240  	for i := 0; i < n; i++ {
   241  		statedb, err := state.New(parent.Root(), state.NewDatabase(db), nil)
   242  		if err != nil {
   243  			panic(err)
   244  		}
   245  		block, receipt := genblock(i, parent, statedb)
   246  		blocks[i] = block
   247  		receipts[i] = receipt
   248  		parent = block
   249  	}
   250  	return blocks, receipts
   251  }
   252  
   253  func makeHeader(chain consensus.ChainReader, parent *types.Block, state *state.StateDB, engine consensus.Engine) *types.Header {
   254  	var time uint64
   255  	if parent.Time() == 0 {
   256  		time = 10
   257  	} else {
   258  		time = parent.Time() + 10 // block time is fixed at 10 seconds
   259  	}
   260  
   261  	// Temporary header values just to calc difficulty
   262  	diffheader := types.EmptyHeader()
   263  	diffheader.SetDifficulty(parent.Difficulty())
   264  	diffheader.SetNumber(parent.Number())
   265  	diffheader.SetTime(time - 10)
   266  	diffheader.SetUncleHash(parent.UncleHash())
   267  
   268  	// Make new header
   269  	header := types.EmptyHeader()
   270  	header.SetRoot(state.IntermediateRoot(true))
   271  	header.SetParentHash(parent.Hash())
   272  	header.SetCoinbase(parent.Coinbase())
   273  	header.SetDifficulty(engine.CalcDifficulty(chain, diffheader))
   274  	header.SetGasLimit(parent.GasLimit())
   275  	header.SetNumber(new(big.Int).Add(parent.Number(), common.Big1))
   276  	header.SetTime(time)
   277  	header.SetBaseFee(misc.CalcBaseFee(chain.Config(), parent.Header()))
   278  	return header
   279  }
   280  
   281  // makeHeaderChain creates a deterministic chain of headers rooted at parent.
   282  func makeHeaderChain(parent *types.Header, n int, engine consensus.Engine, db ethdb.Database, seed int) []*types.Header {
   283  	blocks := makeBlockChain(types.NewBlockWithHeader(parent), n, engine, db, seed)
   284  	headers := make([]*types.Header, len(blocks))
   285  	for i, block := range blocks {
   286  		headers[i] = block.Header()
   287  	}
   288  	return headers
   289  }
   290  
   291  // makeBlockChain creates a deterministic chain of blocks rooted at parent.
   292  func makeBlockChain(parent *types.Block, n int, engine consensus.Engine, db ethdb.Database, seed int) []*types.Block {
   293  	blocks, _ := GenerateChain(params.TestChainConfig, parent, engine, db, n, func(i int, b *BlockGen) {
   294  		b.SetCoinbase(common.BytesToAddress(common.InternalAddress{0: byte(seed), 19: byte(i)}.Bytes()))
   295  	})
   296  	return blocks
   297  }
   298  
   299  type fakeChainReader struct {
   300  	config *params.ChainConfig
   301  }
   302  
   303  // Config returns the chain configuration.
   304  func (cr *fakeChainReader) Config() *params.ChainConfig {
   305  	return cr.config
   306  }
   307  
   308  func (cr *fakeChainReader) CurrentHeader() *types.Header                            { return nil }
   309  func (cr *fakeChainReader) GetHeaderByNumber(number uint64) *types.Header           { return nil }
   310  func (cr *fakeChainReader) GetHeaderByHash(hash common.Hash) *types.Header          { return nil }
   311  func (cr *fakeChainReader) GetHeader(hash common.Hash, number uint64) *types.Header { return nil }
   312  func (cr *fakeChainReader) GetBlock(hash common.Hash, number uint64) *types.Block   { return nil }
   313  func (cr *fakeChainReader) GetTerminiByHash(hash common.Hash) *types.Termini        { return nil }
   314  func (cr *fakeChainReader) ProcessingState() bool                                   { return false }