mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 13:46:43 +00:00
downloader/queue_test: correct makeChain comment to match implementation
This commit is contained in:
parent
c3ef6c77c2
commit
4316f90c84
1 changed files with 4 additions and 4 deletions
|
|
@ -36,13 +36,13 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// makeChain creates a chain of n blocks starting at and including parent.
|
// makeChain creates a chain of n blocks starting at and including parent.
|
||||||
// the returned hash chain is ordered head->parent. In addition, every 3rd block
|
// The returned hash chain is ordered head->parent.
|
||||||
// contains a transaction and every 5th an uncle to allow testing correct block
|
// If empty is false, every second block (i%2==0) contains one transaction.
|
||||||
// reassembly.
|
// No uncles are added.
|
||||||
func makeChain(n int, seed byte, parent *types.Block, empty bool) ([]*types.Block, []types.Receipts) {
|
func makeChain(n int, seed byte, parent *types.Block, empty bool) ([]*types.Block, []types.Receipts) {
|
||||||
blocks, receipts := core.GenerateChain(params.TestChainConfig, parent, ethash.NewFaker(), testDB, n, func(i int, block *core.BlockGen) {
|
blocks, receipts := core.GenerateChain(params.TestChainConfig, parent, ethash.NewFaker(), testDB, n, func(i int, block *core.BlockGen) {
|
||||||
block.SetCoinbase(common.Address{seed})
|
block.SetCoinbase(common.Address{seed})
|
||||||
// Add one tx to every secondblock
|
// Add one tx to every second block
|
||||||
if !empty && i%2 == 0 {
|
if !empty && i%2 == 0 {
|
||||||
signer := types.MakeSigner(params.TestChainConfig, block.Number(), block.Timestamp())
|
signer := types.MakeSigner(params.TestChainConfig, block.Number(), block.Timestamp())
|
||||||
tx, err := types.SignTx(types.NewTransaction(block.TxNonce(testAddress), common.Address{seed}, big.NewInt(1000), params.TxGas, block.BaseFee(), nil), signer, testKey)
|
tx, err := types.SignTx(types.NewTransaction(block.TxNonce(testAddress), common.Address{seed}, big.NewInt(1000), params.TxGas, block.BaseFee(), nil), signer, testKey)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue