github.com/daethereum/go-dae@v2.2.3+incompatible/miner/worker.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 miner
    18  
    19  import (
    20  	"errors"
    21  	"fmt"
    22  	"math/big"
    23  	"sync"
    24  	"sync/atomic"
    25  	"time"
    26  
    27  	mapset "github.com/deckarep/golang-set"
    28  	"github.com/daethereum/go-dae/common"
    29  	"github.com/daethereum/go-dae/consensus"
    30  	"github.com/daethereum/go-dae/consensus/misc"
    31  	"github.com/daethereum/go-dae/core"
    32  	"github.com/daethereum/go-dae/core/state"
    33  	"github.com/daethereum/go-dae/core/types"
    34  	"github.com/daethereum/go-dae/event"
    35  	"github.com/daethereum/go-dae/log"
    36  	"github.com/daethereum/go-dae/params"
    37  	"github.com/daethereum/go-dae/trie"
    38  )
    39  
    40  const (
    41  	// resultQueueSize is the size of channel listening to sealing result.
    42  	resultQueueSize = 10
    43  
    44  	// txChanSize is the size of channel listening to NewTxsEvent.
    45  	// The number is referenced from the size of tx pool.
    46  	txChanSize = 4096
    47  
    48  	// chainHeadChanSize is the size of channel listening to ChainHeadEvent.
    49  	chainHeadChanSize = 10
    50  
    51  	// chainSideChanSize is the size of channel listening to ChainSideEvent.
    52  	chainSideChanSize = 10
    53  
    54  	// resubmitAdjustChanSize is the size of resubmitting interval adjustment channel.
    55  	resubmitAdjustChanSize = 10
    56  
    57  	// sealingLogAtDepth is the number of confirmations before logging successful sealing.
    58  	sealingLogAtDepth = 7
    59  
    60  	// minRecommitInterval is the minimal time interval to recreate the sealing block with
    61  	// any newly arrived transactions.
    62  	minRecommitInterval = 1 * time.Second
    63  
    64  	// maxRecommitInterval is the maximum time interval to recreate the sealing block with
    65  	// any newly arrived transactions.
    66  	maxRecommitInterval = 15 * time.Second
    67  
    68  	// intervalAdjustRatio is the impact a single interval adjustment has on sealing work
    69  	// resubmitting interval.
    70  	intervalAdjustRatio = 0.1
    71  
    72  	// intervalAdjustBias is applied during the new resubmit interval calculation in favor of
    73  	// increasing upper limit or decreasing lower limit so that the limit can be reachable.
    74  	intervalAdjustBias = 200 * 1000.0 * 1000.0
    75  
    76  	// staleThreshold is the maximum depth of the acceptable stale block.
    77  	staleThreshold = 7
    78  )
    79  
    80  var (
    81  	errBlockInterruptedByNewHead  = errors.New("new head arrived while building block")
    82  	errBlockInterruptedByRecommit = errors.New("recommit interrupt while building block")
    83  )
    84  
    85  // environment is the worker's current environment and holds all
    86  // information of the sealing block generation.
    87  type environment struct {
    88  	signer types.Signer
    89  
    90  	state     *state.StateDB // apply state changes here
    91  	ancestors mapset.Set     // ancestor set (used for checking uncle parent validity)
    92  	family    mapset.Set     // family set (used for checking uncle invalidity)
    93  	tcount    int            // tx count in cycle
    94  	gasPool   *core.GasPool  // available gas used to pack transactions
    95  	coinbase  common.Address
    96  
    97  	header   *types.Header
    98  	txs      []*types.Transaction
    99  	receipts []*types.Receipt
   100  	uncles   map[common.Hash]*types.Header
   101  }
   102  
   103  // copy creates a deep copy of environment.
   104  func (env *environment) copy() *environment {
   105  	cpy := &environment{
   106  		signer:    env.signer,
   107  		state:     env.state.Copy(),
   108  		ancestors: env.ancestors.Clone(),
   109  		family:    env.family.Clone(),
   110  		tcount:    env.tcount,
   111  		coinbase:  env.coinbase,
   112  		header:    types.CopyHeader(env.header),
   113  		receipts:  copyReceipts(env.receipts),
   114  	}
   115  	if env.gasPool != nil {
   116  		gasPool := *env.gasPool
   117  		cpy.gasPool = &gasPool
   118  	}
   119  	// The content of txs and uncles are immutable, unnecessary
   120  	// to do the expensive deep copy for them.
   121  	cpy.txs = make([]*types.Transaction, len(env.txs))
   122  	copy(cpy.txs, env.txs)
   123  	cpy.uncles = make(map[common.Hash]*types.Header)
   124  	for hash, uncle := range env.uncles {
   125  		cpy.uncles[hash] = uncle
   126  	}
   127  	return cpy
   128  }
   129  
   130  // unclelist returns the contained uncles as the list format.
   131  func (env *environment) unclelist() []*types.Header {
   132  	var uncles []*types.Header
   133  	for _, uncle := range env.uncles {
   134  		uncles = append(uncles, uncle)
   135  	}
   136  	return uncles
   137  }
   138  
   139  // discard terminates the background prefetcher go-routine. It should
   140  // always be called for all created environment instances otherwise
   141  // the go-routine leak can happen.
   142  func (env *environment) discard() {
   143  	if env.state == nil {
   144  		return
   145  	}
   146  	env.state.StopPrefetcher()
   147  }
   148  
   149  // task contains all information for consensus engine sealing and result submitting.
   150  type task struct {
   151  	receipts  []*types.Receipt
   152  	state     *state.StateDB
   153  	block     *types.Block
   154  	createdAt time.Time
   155  }
   156  
   157  const (
   158  	commitInterruptNone int32 = iota
   159  	commitInterruptNewHead
   160  	commitInterruptResubmit
   161  )
   162  
   163  // newWorkReq represents a request for new sealing work submitting with relative interrupt notifier.
   164  type newWorkReq struct {
   165  	interrupt *int32
   166  	noempty   bool
   167  	timestamp int64
   168  }
   169  
   170  // getWorkReq represents a request for getting a new sealing work with provided parameters.
   171  type getWorkReq struct {
   172  	params *generateParams
   173  	result chan *types.Block // non-blocking channel
   174  	err    chan error
   175  }
   176  
   177  // intervalAdjust represents a resubmitting interval adjustment.
   178  type intervalAdjust struct {
   179  	ratio float64
   180  	inc   bool
   181  }
   182  
   183  // worker is the main object which takes care of submitting new work to consensus engine
   184  // and gathering the sealing result.
   185  type worker struct {
   186  	config      *Config
   187  	chainConfig *params.ChainConfig
   188  	engine      consensus.Engine
   189  	eth         Backend
   190  	chain       *core.BlockChain
   191  
   192  	// Feeds
   193  	pendingLogsFeed event.Feed
   194  
   195  	// Subscriptions
   196  	mux          *event.TypeMux
   197  	txsCh        chan core.NewTxsEvent
   198  	txsSub       event.Subscription
   199  	chainHeadCh  chan core.ChainHeadEvent
   200  	chainHeadSub event.Subscription
   201  	chainSideCh  chan core.ChainSideEvent
   202  	chainSideSub event.Subscription
   203  
   204  	// Channels
   205  	newWorkCh          chan *newWorkReq
   206  	getWorkCh          chan *getWorkReq
   207  	taskCh             chan *task
   208  	resultCh           chan *types.Block
   209  	startCh            chan struct{}
   210  	exitCh             chan struct{}
   211  	resubmitIntervalCh chan time.Duration
   212  	resubmitAdjustCh   chan *intervalAdjust
   213  
   214  	wg sync.WaitGroup
   215  
   216  	current      *environment                 // An environment for current running cycle.
   217  	localUncles  map[common.Hash]*types.Block // A set of side blocks generated locally as the possible uncle blocks.
   218  	remoteUncles map[common.Hash]*types.Block // A set of side blocks as the possible uncle blocks.
   219  	unconfirmed  *unconfirmedBlocks           // A set of locally mined blocks pending canonicalness confirmations.
   220  
   221  	mu       sync.RWMutex // The lock used to protect the coinbase and extra fields
   222  	coinbase common.Address
   223  	extra    []byte
   224  
   225  	pendingMu    sync.RWMutex
   226  	pendingTasks map[common.Hash]*task
   227  
   228  	snapshotMu       sync.RWMutex // The lock used to protect the snapshots below
   229  	snapshotBlock    *types.Block
   230  	snapshotReceipts types.Receipts
   231  	snapshotState    *state.StateDB
   232  
   233  	// atomic status counters
   234  	running int32 // The indicator whether the consensus engine is running or not.
   235  	newTxs  int32 // New arrival transaction count since last sealing work submitting.
   236  
   237  	// noempty is the flag used to control whether the feature of pre-seal empty
   238  	// block is enabled. The default value is false(pre-seal is enabled by default).
   239  	// But in some special scenario the consensus engine will seal blocks instantaneously,
   240  	// in this case this feature will add all empty blocks into canonical chain
   241  	// non-stop and no real transaction will be included.
   242  	noempty uint32
   243  
   244  	// External functions
   245  	isLocalBlock func(header *types.Header) bool // Function used to determine whether the specified block is mined by local miner.
   246  
   247  	// Test hooks
   248  	newTaskHook  func(*task)                        // Method to call upon receiving a new sealing task.
   249  	skipSealHook func(*task) bool                   // Method to decide whether skipping the sealing.
   250  	fullTaskHook func()                             // Method to call before pushing the full sealing task.
   251  	resubmitHook func(time.Duration, time.Duration) // Method to call upon updating resubmitting interval.
   252  }
   253  
   254  func newWorker(config *Config, chainConfig *params.ChainConfig, engine consensus.Engine, eth Backend, mux *event.TypeMux, isLocalBlock func(header *types.Header) bool, init bool) *worker {
   255  	worker := &worker{
   256  		config:             config,
   257  		chainConfig:        chainConfig,
   258  		engine:             engine,
   259  		eth:                eth,
   260  		mux:                mux,
   261  		chain:              eth.BlockChain(),
   262  		isLocalBlock:       isLocalBlock,
   263  		localUncles:        make(map[common.Hash]*types.Block),
   264  		remoteUncles:       make(map[common.Hash]*types.Block),
   265  		unconfirmed:        newUnconfirmedBlocks(eth.BlockChain(), sealingLogAtDepth),
   266  		pendingTasks:       make(map[common.Hash]*task),
   267  		txsCh:              make(chan core.NewTxsEvent, txChanSize),
   268  		chainHeadCh:        make(chan core.ChainHeadEvent, chainHeadChanSize),
   269  		chainSideCh:        make(chan core.ChainSideEvent, chainSideChanSize),
   270  		newWorkCh:          make(chan *newWorkReq),
   271  		getWorkCh:          make(chan *getWorkReq),
   272  		taskCh:             make(chan *task),
   273  		resultCh:           make(chan *types.Block, resultQueueSize),
   274  		exitCh:             make(chan struct{}),
   275  		startCh:            make(chan struct{}, 1),
   276  		resubmitIntervalCh: make(chan time.Duration),
   277  		resubmitAdjustCh:   make(chan *intervalAdjust, resubmitAdjustChanSize),
   278  	}
   279  	// Subscribe NewTxsEvent for tx pool
   280  	worker.txsSub = eth.TxPool().SubscribeNewTxsEvent(worker.txsCh)
   281  	// Subscribe events for blockchain
   282  	worker.chainHeadSub = eth.BlockChain().SubscribeChainHeadEvent(worker.chainHeadCh)
   283  	worker.chainSideSub = eth.BlockChain().SubscribeChainSideEvent(worker.chainSideCh)
   284  
   285  	// Sanitize recommit interval if the user-specified one is too short.
   286  	recommit := worker.config.Recommit
   287  	if recommit < minRecommitInterval {
   288  		log.Warn("Sanitizing miner recommit interval", "provided", recommit, "updated", minRecommitInterval)
   289  		recommit = minRecommitInterval
   290  	}
   291  
   292  	worker.wg.Add(4)
   293  	go worker.mainLoop()
   294  	go worker.newWorkLoop(recommit)
   295  	go worker.resultLoop()
   296  	go worker.taskLoop()
   297  
   298  	// Submit first work to initialize pending state.
   299  	if init {
   300  		worker.startCh <- struct{}{}
   301  	}
   302  	return worker
   303  }
   304  
   305  // setEtherbase sets the etherbase used to initialize the block coinbase field.
   306  func (w *worker) setEtherbase(addr common.Address) {
   307  	w.mu.Lock()
   308  	defer w.mu.Unlock()
   309  	w.coinbase = addr
   310  }
   311  
   312  func (w *worker) setGasCeil(ceil uint64) {
   313  	w.mu.Lock()
   314  	defer w.mu.Unlock()
   315  	w.config.GasCeil = ceil
   316  }
   317  
   318  // setExtra sets the content used to initialize the block extra field.
   319  func (w *worker) setExtra(extra []byte) {
   320  	w.mu.Lock()
   321  	defer w.mu.Unlock()
   322  	w.extra = extra
   323  }
   324  
   325  // setRecommitInterval updates the interval for miner sealing work recommitting.
   326  func (w *worker) setRecommitInterval(interval time.Duration) {
   327  	select {
   328  	case w.resubmitIntervalCh <- interval:
   329  	case <-w.exitCh:
   330  	}
   331  }
   332  
   333  // disablePreseal disables pre-sealing feature
   334  func (w *worker) disablePreseal() {
   335  	atomic.StoreUint32(&w.noempty, 1)
   336  }
   337  
   338  // enablePreseal enables pre-sealing feature
   339  func (w *worker) enablePreseal() {
   340  	atomic.StoreUint32(&w.noempty, 0)
   341  }
   342  
   343  // pending returns the pending state and corresponding block.
   344  func (w *worker) pending() (*types.Block, *state.StateDB) {
   345  	// return a snapshot to avoid contention on currentMu mutex
   346  	w.snapshotMu.RLock()
   347  	defer w.snapshotMu.RUnlock()
   348  	if w.snapshotState == nil {
   349  		return nil, nil
   350  	}
   351  	return w.snapshotBlock, w.snapshotState.Copy()
   352  }
   353  
   354  // pendingBlock returns pending block.
   355  func (w *worker) pendingBlock() *types.Block {
   356  	// return a snapshot to avoid contention on currentMu mutex
   357  	w.snapshotMu.RLock()
   358  	defer w.snapshotMu.RUnlock()
   359  	return w.snapshotBlock
   360  }
   361  
   362  // pendingBlockAndReceipts returns pending block and corresponding receipts.
   363  func (w *worker) pendingBlockAndReceipts() (*types.Block, types.Receipts) {
   364  	// return a snapshot to avoid contention on currentMu mutex
   365  	w.snapshotMu.RLock()
   366  	defer w.snapshotMu.RUnlock()
   367  	return w.snapshotBlock, w.snapshotReceipts
   368  }
   369  
   370  // start sets the running status as 1 and triggers new work submitting.
   371  func (w *worker) start() {
   372  	atomic.StoreInt32(&w.running, 1)
   373  	w.startCh <- struct{}{}
   374  }
   375  
   376  // stop sets the running status as 0.
   377  func (w *worker) stop() {
   378  	atomic.StoreInt32(&w.running, 0)
   379  }
   380  
   381  // isRunning returns an indicator whether worker is running or not.
   382  func (w *worker) isRunning() bool {
   383  	return atomic.LoadInt32(&w.running) == 1
   384  }
   385  
   386  // close terminates all background threads maintained by the worker.
   387  // Note the worker does not support being closed multiple times.
   388  func (w *worker) close() {
   389  	atomic.StoreInt32(&w.running, 0)
   390  	close(w.exitCh)
   391  	w.wg.Wait()
   392  }
   393  
   394  // recalcRecommit recalculates the resubmitting interval upon feedback.
   395  func recalcRecommit(minRecommit, prev time.Duration, target float64, inc bool) time.Duration {
   396  	var (
   397  		prevF = float64(prev.Nanoseconds())
   398  		next  float64
   399  	)
   400  	if inc {
   401  		next = prevF*(1-intervalAdjustRatio) + intervalAdjustRatio*(target+intervalAdjustBias)
   402  		max := float64(maxRecommitInterval.Nanoseconds())
   403  		if next > max {
   404  			next = max
   405  		}
   406  	} else {
   407  		next = prevF*(1-intervalAdjustRatio) + intervalAdjustRatio*(target-intervalAdjustBias)
   408  		min := float64(minRecommit.Nanoseconds())
   409  		if next < min {
   410  			next = min
   411  		}
   412  	}
   413  	return time.Duration(int64(next))
   414  }
   415  
   416  // newWorkLoop is a standalone goroutine to submit new sealing work upon received events.
   417  func (w *worker) newWorkLoop(recommit time.Duration) {
   418  	defer w.wg.Done()
   419  	var (
   420  		interrupt   *int32
   421  		minRecommit = recommit // minimal resubmit interval specified by user.
   422  		timestamp   int64      // timestamp for each round of sealing.
   423  	)
   424  
   425  	timer := time.NewTimer(0)
   426  	defer timer.Stop()
   427  	<-timer.C // discard the initial tick
   428  
   429  	// commit aborts in-flight transaction execution with given signal and resubmits a new one.
   430  	commit := func(noempty bool, s int32) {
   431  		if interrupt != nil {
   432  			atomic.StoreInt32(interrupt, s)
   433  		}
   434  		interrupt = new(int32)
   435  		select {
   436  		case w.newWorkCh <- &newWorkReq{interrupt: interrupt, noempty: noempty, timestamp: timestamp}:
   437  		case <-w.exitCh:
   438  			return
   439  		}
   440  		timer.Reset(recommit)
   441  		atomic.StoreInt32(&w.newTxs, 0)
   442  	}
   443  	// clearPending cleans the stale pending tasks.
   444  	clearPending := func(number uint64) {
   445  		w.pendingMu.Lock()
   446  		for h, t := range w.pendingTasks {
   447  			if t.block.NumberU64()+staleThreshold <= number {
   448  				delete(w.pendingTasks, h)
   449  			}
   450  		}
   451  		w.pendingMu.Unlock()
   452  	}
   453  
   454  	for {
   455  		select {
   456  		case <-w.startCh:
   457  			clearPending(w.chain.CurrentBlock().NumberU64())
   458  			timestamp = time.Now().Unix()
   459  			commit(false, commitInterruptNewHead)
   460  
   461  		case head := <-w.chainHeadCh:
   462  			clearPending(head.Block.NumberU64())
   463  			timestamp = time.Now().Unix()
   464  			commit(false, commitInterruptNewHead)
   465  
   466  		case <-timer.C:
   467  			// If sealing is running resubmit a new work cycle periodically to pull in
   468  			// higher priced transactions. Disable this overhead for pending blocks.
   469  			if w.isRunning() && (w.chainConfig.Clique == nil || w.chainConfig.Clique.Period > 0) {
   470  				// Short circuit if no new transaction arrives.
   471  				if atomic.LoadInt32(&w.newTxs) == 0 {
   472  					timer.Reset(recommit)
   473  					continue
   474  				}
   475  				commit(true, commitInterruptResubmit)
   476  			}
   477  
   478  		case interval := <-w.resubmitIntervalCh:
   479  			// Adjust resubmit interval explicitly by user.
   480  			if interval < minRecommitInterval {
   481  				log.Warn("Sanitizing miner recommit interval", "provided", interval, "updated", minRecommitInterval)
   482  				interval = minRecommitInterval
   483  			}
   484  			log.Info("Miner recommit interval update", "from", minRecommit, "to", interval)
   485  			minRecommit, recommit = interval, interval
   486  
   487  			if w.resubmitHook != nil {
   488  				w.resubmitHook(minRecommit, recommit)
   489  			}
   490  
   491  		case adjust := <-w.resubmitAdjustCh:
   492  			// Adjust resubmit interval by feedback.
   493  			if adjust.inc {
   494  				before := recommit
   495  				target := float64(recommit.Nanoseconds()) / adjust.ratio
   496  				recommit = recalcRecommit(minRecommit, recommit, target, true)
   497  				log.Trace("Increase miner recommit interval", "from", before, "to", recommit)
   498  			} else {
   499  				before := recommit
   500  				recommit = recalcRecommit(minRecommit, recommit, float64(minRecommit.Nanoseconds()), false)
   501  				log.Trace("Decrease miner recommit interval", "from", before, "to", recommit)
   502  			}
   503  
   504  			if w.resubmitHook != nil {
   505  				w.resubmitHook(minRecommit, recommit)
   506  			}
   507  
   508  		case <-w.exitCh:
   509  			return
   510  		}
   511  	}
   512  }
   513  
   514  // mainLoop is responsible for generating and submitting sealing work based on
   515  // the received event. It can support two modes: automatically generate task and
   516  // submit it or return task according to given parameters for various proposes.
   517  func (w *worker) mainLoop() {
   518  	defer w.wg.Done()
   519  	defer w.txsSub.Unsubscribe()
   520  	defer w.chainHeadSub.Unsubscribe()
   521  	defer w.chainSideSub.Unsubscribe()
   522  	defer func() {
   523  		if w.current != nil {
   524  			w.current.discard()
   525  		}
   526  	}()
   527  
   528  	cleanTicker := time.NewTicker(time.Second * 10)
   529  	defer cleanTicker.Stop()
   530  
   531  	for {
   532  		select {
   533  		case req := <-w.newWorkCh:
   534  			w.commitWork(req.interrupt, req.noempty, req.timestamp)
   535  
   536  		case req := <-w.getWorkCh:
   537  			block, err := w.generateWork(req.params)
   538  			if err != nil {
   539  				req.err <- err
   540  				req.result <- nil
   541  			} else {
   542  				req.err <- nil
   543  				req.result <- block
   544  			}
   545  		case ev := <-w.chainSideCh:
   546  			// Short circuit for duplicate side blocks
   547  			if _, exist := w.localUncles[ev.Block.Hash()]; exist {
   548  				continue
   549  			}
   550  			if _, exist := w.remoteUncles[ev.Block.Hash()]; exist {
   551  				continue
   552  			}
   553  			// Add side block to possible uncle block set depending on the author.
   554  			if w.isLocalBlock != nil && w.isLocalBlock(ev.Block.Header()) {
   555  				w.localUncles[ev.Block.Hash()] = ev.Block
   556  			} else {
   557  				w.remoteUncles[ev.Block.Hash()] = ev.Block
   558  			}
   559  			// If our sealing block contains less than 2 uncle blocks,
   560  			// add the new uncle block if valid and regenerate a new
   561  			// sealing block for higher profit.
   562  			if w.isRunning() && w.current != nil && len(w.current.uncles) < 2 {
   563  				start := time.Now()
   564  				if err := w.commitUncle(w.current, ev.Block.Header()); err == nil {
   565  					w.commit(w.current.copy(), nil, true, start)
   566  				}
   567  			}
   568  
   569  		case <-cleanTicker.C:
   570  			chainHead := w.chain.CurrentBlock()
   571  			for hash, uncle := range w.localUncles {
   572  				if uncle.NumberU64()+staleThreshold <= chainHead.NumberU64() {
   573  					delete(w.localUncles, hash)
   574  				}
   575  			}
   576  			for hash, uncle := range w.remoteUncles {
   577  				if uncle.NumberU64()+staleThreshold <= chainHead.NumberU64() {
   578  					delete(w.remoteUncles, hash)
   579  				}
   580  			}
   581  
   582  		case ev := <-w.txsCh:
   583  			// Apply transactions to the pending state if we're not sealing
   584  			//
   585  			// Note all transactions received may not be continuous with transactions
   586  			// already included in the current sealing block. These transactions will
   587  			// be automatically eliminated.
   588  			if !w.isRunning() && w.current != nil {
   589  				// If block is already full, abort
   590  				if gp := w.current.gasPool; gp != nil && gp.Gas() < params.TxGas {
   591  					continue
   592  				}
   593  				txs := make(map[common.Address]types.Transactions)
   594  				for _, tx := range ev.Txs {
   595  					acc, _ := types.Sender(w.current.signer, tx)
   596  					txs[acc] = append(txs[acc], tx)
   597  				}
   598  				txset := types.NewTransactionsByPriceAndNonce(w.current.signer, txs, w.current.header.BaseFee)
   599  				tcount := w.current.tcount
   600  				w.commitTransactions(w.current, txset, nil)
   601  
   602  				// Only update the snapshot if any new transactions were added
   603  				// to the pending block
   604  				if tcount != w.current.tcount {
   605  					w.updateSnapshot(w.current)
   606  				}
   607  			} else {
   608  				// Special case, if the consensus engine is 0 period clique(dev mode),
   609  				// submit sealing work here since all empty submission will be rejected
   610  				// by clique. Of course the advance sealing(empty submission) is disabled.
   611  				if w.chainConfig.Clique != nil && w.chainConfig.Clique.Period == 0 {
   612  					w.commitWork(nil, true, time.Now().Unix())
   613  				}
   614  			}
   615  			atomic.AddInt32(&w.newTxs, int32(len(ev.Txs)))
   616  
   617  		// System stopped
   618  		case <-w.exitCh:
   619  			return
   620  		case <-w.txsSub.Err():
   621  			return
   622  		case <-w.chainHeadSub.Err():
   623  			return
   624  		case <-w.chainSideSub.Err():
   625  			return
   626  		}
   627  	}
   628  }
   629  
   630  // taskLoop is a standalone goroutine to fetch sealing task from the generator and
   631  // push them to consensus engine.
   632  func (w *worker) taskLoop() {
   633  	defer w.wg.Done()
   634  	var (
   635  		stopCh chan struct{}
   636  		prev   common.Hash
   637  	)
   638  
   639  	// interrupt aborts the in-flight sealing task.
   640  	interrupt := func() {
   641  		if stopCh != nil {
   642  			close(stopCh)
   643  			stopCh = nil
   644  		}
   645  	}
   646  	for {
   647  		select {
   648  		case task := <-w.taskCh:
   649  			if w.newTaskHook != nil {
   650  				w.newTaskHook(task)
   651  			}
   652  			// Reject duplicate sealing work due to resubmitting.
   653  			sealHash := w.engine.SealHash(task.block.Header())
   654  			if sealHash == prev {
   655  				continue
   656  			}
   657  			// Interrupt previous sealing operation
   658  			interrupt()
   659  			stopCh, prev = make(chan struct{}), sealHash
   660  
   661  			if w.skipSealHook != nil && w.skipSealHook(task) {
   662  				continue
   663  			}
   664  			w.pendingMu.Lock()
   665  			w.pendingTasks[sealHash] = task
   666  			w.pendingMu.Unlock()
   667  
   668  			if err := w.engine.Seal(w.chain, task.block, w.resultCh, stopCh); err != nil {
   669  				log.Warn("Block sealing failed", "err", err)
   670  				w.pendingMu.Lock()
   671  				delete(w.pendingTasks, sealHash)
   672  				w.pendingMu.Unlock()
   673  			}
   674  		case <-w.exitCh:
   675  			interrupt()
   676  			return
   677  		}
   678  	}
   679  }
   680  
   681  // resultLoop is a standalone goroutine to handle sealing result submitting
   682  // and flush relative data to the database.
   683  func (w *worker) resultLoop() {
   684  	defer w.wg.Done()
   685  	for {
   686  		select {
   687  		case block := <-w.resultCh:
   688  			// Short circuit when receiving empty result.
   689  			if block == nil {
   690  				continue
   691  			}
   692  			// Short circuit when receiving duplicate result caused by resubmitting.
   693  			if w.chain.HasBlock(block.Hash(), block.NumberU64()) {
   694  				continue
   695  			}
   696  			var (
   697  				sealhash = w.engine.SealHash(block.Header())
   698  				hash     = block.Hash()
   699  			)
   700  			w.pendingMu.RLock()
   701  			task, exist := w.pendingTasks[sealhash]
   702  			w.pendingMu.RUnlock()
   703  			if !exist {
   704  				log.Error("Block found but no relative pending task", "number", block.Number(), "sealhash", sealhash, "hash", hash)
   705  				continue
   706  			}
   707  			// Different block could share same sealhash, deep copy here to prevent write-write conflict.
   708  			var (
   709  				receipts = make([]*types.Receipt, len(task.receipts))
   710  				logs     []*types.Log
   711  			)
   712  			for i, taskReceipt := range task.receipts {
   713  				receipt := new(types.Receipt)
   714  				receipts[i] = receipt
   715  				*receipt = *taskReceipt
   716  
   717  				// add block location fields
   718  				receipt.BlockHash = hash
   719  				receipt.BlockNumber = block.Number()
   720  				receipt.TransactionIndex = uint(i)
   721  
   722  				// Update the block hash in all logs since it is now available and not when the
   723  				// receipt/log of individual transactions were created.
   724  				receipt.Logs = make([]*types.Log, len(taskReceipt.Logs))
   725  				for i, taskLog := range taskReceipt.Logs {
   726  					log := new(types.Log)
   727  					receipt.Logs[i] = log
   728  					*log = *taskLog
   729  					log.BlockHash = hash
   730  				}
   731  				logs = append(logs, receipt.Logs...)
   732  			}
   733  			// Commit block and state to database.
   734  			_, err := w.chain.WriteBlockAndSetHead(block, receipts, logs, task.state, true)
   735  			if err != nil {
   736  				log.Error("Failed writing block to chain", "err", err)
   737  				continue
   738  			}
   739  			log.Info("Successfully sealed new block", "number", block.Number(), "sealhash", sealhash, "hash", hash,
   740  				"elapsed", common.PrettyDuration(time.Since(task.createdAt)))
   741  
   742  			// Broadcast the block and announce chain insertion event
   743  			w.mux.Post(core.NewMinedBlockEvent{Block: block})
   744  
   745  			// Insert the block into the set of pending ones to resultLoop for confirmations
   746  			w.unconfirmed.Insert(block.NumberU64(), block.Hash())
   747  
   748  		case <-w.exitCh:
   749  			return
   750  		}
   751  	}
   752  }
   753  
   754  // makeEnv creates a new environment for the sealing block.
   755  func (w *worker) makeEnv(parent *types.Block, header *types.Header, coinbase common.Address) (*environment, error) {
   756  	// Retrieve the parent state to execute on top and start a prefetcher for
   757  	// the miner to speed block sealing up a bit.
   758  	state, err := w.chain.StateAt(parent.Root())
   759  	if err != nil {
   760  		return nil, err
   761  	}
   762  	state.StartPrefetcher("miner")
   763  
   764  	// Note the passed coinbase may be different with header.Coinbase.
   765  	env := &environment{
   766  		signer:    types.MakeSigner(w.chainConfig, header.Number),
   767  		state:     state,
   768  		coinbase:  coinbase,
   769  		ancestors: mapset.NewSet(),
   770  		family:    mapset.NewSet(),
   771  		header:    header,
   772  		uncles:    make(map[common.Hash]*types.Header),
   773  	}
   774  	// when 08 is processed ancestors contain 07 (quick block)
   775  	for _, ancestor := range w.chain.GetBlocksFromHash(parent.Hash(), 7) {
   776  		for _, uncle := range ancestor.Uncles() {
   777  			env.family.Add(uncle.Hash())
   778  		}
   779  		env.family.Add(ancestor.Hash())
   780  		env.ancestors.Add(ancestor.Hash())
   781  	}
   782  	// Keep track of transactions which return errors so they can be removed
   783  	env.tcount = 0
   784  	return env, nil
   785  }
   786  
   787  // commitUncle adds the given block to uncle block set, returns error if failed to add.
   788  func (w *worker) commitUncle(env *environment, uncle *types.Header) error {
   789  	if w.isTTDReached(env.header) {
   790  		return errors.New("ignore uncle for beacon block")
   791  	}
   792  	hash := uncle.Hash()
   793  	if _, exist := env.uncles[hash]; exist {
   794  		return errors.New("uncle not unique")
   795  	}
   796  	if env.header.ParentHash == uncle.ParentHash {
   797  		return errors.New("uncle is sibling")
   798  	}
   799  	if !env.ancestors.Contains(uncle.ParentHash) {
   800  		return errors.New("uncle's parent unknown")
   801  	}
   802  	if env.family.Contains(hash) {
   803  		return errors.New("uncle already included")
   804  	}
   805  	env.uncles[hash] = uncle
   806  	return nil
   807  }
   808  
   809  // updateSnapshot updates pending snapshot block, receipts and state.
   810  func (w *worker) updateSnapshot(env *environment) {
   811  	w.snapshotMu.Lock()
   812  	defer w.snapshotMu.Unlock()
   813  
   814  	w.snapshotBlock = types.NewBlock(
   815  		env.header,
   816  		env.txs,
   817  		env.unclelist(),
   818  		env.receipts,
   819  		trie.NewStackTrie(nil),
   820  	)
   821  	w.snapshotReceipts = copyReceipts(env.receipts)
   822  	w.snapshotState = env.state.Copy()
   823  }
   824  
   825  func (w *worker) commitTransaction(env *environment, tx *types.Transaction) ([]*types.Log, error) {
   826  	snap := env.state.Snapshot()
   827  
   828  	receipt, err := core.ApplyTransaction(w.chainConfig, w.chain, &env.coinbase, env.gasPool, env.state, env.header, tx, &env.header.GasUsed, *w.chain.GetVMConfig())
   829  	if err != nil {
   830  		env.state.RevertToSnapshot(snap)
   831  		return nil, err
   832  	}
   833  	env.txs = append(env.txs, tx)
   834  	env.receipts = append(env.receipts, receipt)
   835  
   836  	return receipt.Logs, nil
   837  }
   838  
   839  func (w *worker) commitTransactions(env *environment, txs *types.TransactionsByPriceAndNonce, interrupt *int32) error {
   840  	gasLimit := env.header.GasLimit
   841  	if env.gasPool == nil {
   842  		env.gasPool = new(core.GasPool).AddGas(gasLimit)
   843  	}
   844  	var coalescedLogs []*types.Log
   845  
   846  	for {
   847  		// In the following three cases, we will interrupt the execution of the transaction.
   848  		// (1) new head block event arrival, the interrupt signal is 1
   849  		// (2) worker start or restart, the interrupt signal is 1
   850  		// (3) worker recreate the sealing block with any newly arrived transactions, the interrupt signal is 2.
   851  		// For the first two cases, the semi-finished work will be discarded.
   852  		// For the third case, the semi-finished work will be submitted to the consensus engine.
   853  		if interrupt != nil && atomic.LoadInt32(interrupt) != commitInterruptNone {
   854  			// Notify resubmit loop to increase resubmitting interval due to too frequent commits.
   855  			if atomic.LoadInt32(interrupt) == commitInterruptResubmit {
   856  				ratio := float64(gasLimit-env.gasPool.Gas()) / float64(gasLimit)
   857  				if ratio < 0.1 {
   858  					ratio = 0.1
   859  				}
   860  				w.resubmitAdjustCh <- &intervalAdjust{
   861  					ratio: ratio,
   862  					inc:   true,
   863  				}
   864  				return errBlockInterruptedByRecommit
   865  			}
   866  			return errBlockInterruptedByNewHead
   867  		}
   868  		// If we don't have enough gas for any further transactions then we're done
   869  		if env.gasPool.Gas() < params.TxGas {
   870  			log.Trace("Not enough gas for further transactions", "have", env.gasPool, "want", params.TxGas)
   871  			break
   872  		}
   873  		// Retrieve the next transaction and abort if all done
   874  		tx := txs.Peek()
   875  		if tx == nil {
   876  			break
   877  		}
   878  		// Error may be ignored here. The error has already been checked
   879  		// during transaction acceptance is the transaction pool.
   880  		//
   881  		// We use the eip155 signer regardless of the current hf.
   882  		from, _ := types.Sender(env.signer, tx)
   883  		// Check whether the tx is replay protected. If we're not in the EIP155 hf
   884  		// phase, start ignoring the sender until we do.
   885  		if tx.Protected() && !w.chainConfig.IsEIP155(env.header.Number) {
   886  			log.Trace("Ignoring reply protected transaction", "hash", tx.Hash(), "eip155", w.chainConfig.EIP155Block)
   887  
   888  			txs.Pop()
   889  			continue
   890  		}
   891  		// Start executing the transaction
   892  		env.state.Prepare(tx.Hash(), env.tcount)
   893  
   894  		logs, err := w.commitTransaction(env, tx)
   895  		switch {
   896  		case errors.Is(err, core.ErrGasLimitReached):
   897  			// Pop the current out-of-gas transaction without shifting in the next from the account
   898  			log.Trace("Gas limit exceeded for current block", "sender", from)
   899  			txs.Pop()
   900  
   901  		case errors.Is(err, core.ErrNonceTooLow):
   902  			// New head notification data race between the transaction pool and miner, shift
   903  			log.Trace("Skipping transaction with low nonce", "sender", from, "nonce", tx.Nonce())
   904  			txs.Shift()
   905  
   906  		case errors.Is(err, core.ErrNonceTooHigh):
   907  			// Reorg notification data race between the transaction pool and miner, skip account =
   908  			log.Trace("Skipping account with hight nonce", "sender", from, "nonce", tx.Nonce())
   909  			txs.Pop()
   910  
   911  		case errors.Is(err, nil):
   912  			// Everything ok, collect the logs and shift in the next transaction from the same account
   913  			coalescedLogs = append(coalescedLogs, logs...)
   914  			env.tcount++
   915  			txs.Shift()
   916  
   917  		case errors.Is(err, core.ErrTxTypeNotSupported):
   918  			// Pop the unsupported transaction without shifting in the next from the account
   919  			log.Trace("Skipping unsupported transaction type", "sender", from, "type", tx.Type())
   920  			txs.Pop()
   921  
   922  		default:
   923  			// Strange error, discard the transaction and get the next in line (note, the
   924  			// nonce-too-high clause will prevent us from executing in vain).
   925  			log.Debug("Transaction failed, account skipped", "hash", tx.Hash(), "err", err)
   926  			txs.Shift()
   927  		}
   928  	}
   929  
   930  	if !w.isRunning() && len(coalescedLogs) > 0 {
   931  		// We don't push the pendingLogsEvent while we are sealing. The reason is that
   932  		// when we are sealing, the worker will regenerate a sealing block every 3 seconds.
   933  		// In order to avoid pushing the repeated pendingLog, we disable the pending log pushing.
   934  
   935  		// make a copy, the state caches the logs and these logs get "upgraded" from pending to mined
   936  		// logs by filling in the block hash when the block was mined by the local miner. This can
   937  		// cause a race condition if a log was "upgraded" before the PendingLogsEvent is processed.
   938  		cpy := make([]*types.Log, len(coalescedLogs))
   939  		for i, l := range coalescedLogs {
   940  			cpy[i] = new(types.Log)
   941  			*cpy[i] = *l
   942  		}
   943  		w.pendingLogsFeed.Send(cpy)
   944  	}
   945  	// Notify resubmit loop to decrease resubmitting interval if current interval is larger
   946  	// than the user-specified one.
   947  	if interrupt != nil {
   948  		w.resubmitAdjustCh <- &intervalAdjust{inc: false}
   949  	}
   950  	return nil
   951  }
   952  
   953  // generateParams wraps various of settings for generating sealing task.
   954  type generateParams struct {
   955  	timestamp  uint64         // The timstamp for sealing task
   956  	forceTime  bool           // Flag whether the given timestamp is immutable or not
   957  	parentHash common.Hash    // Parent block hash, empty means the latest chain head
   958  	coinbase   common.Address // The fee recipient address for including transaction
   959  	random     common.Hash    // The randomness generated by beacon chain, empty before the merge
   960  	noUncle    bool           // Flag whether the uncle block inclusion is allowed
   961  	noExtra    bool           // Flag whether the extra field assignment is allowed
   962  	noTxs      bool           // Flag whether an empty block without any transaction is expected
   963  }
   964  
   965  // prepareWork constructs the sealing task according to the given parameters,
   966  // either based on the last chain head or specified parent. In this function
   967  // the pending transactions are not filled yet, only the empty task returned.
   968  func (w *worker) prepareWork(genParams *generateParams) (*environment, error) {
   969  	w.mu.RLock()
   970  	defer w.mu.RUnlock()
   971  
   972  	// Find the parent block for sealing task
   973  	parent := w.chain.CurrentBlock()
   974  	if genParams.parentHash != (common.Hash{}) {
   975  		parent = w.chain.GetBlockByHash(genParams.parentHash)
   976  	}
   977  	if parent == nil {
   978  		return nil, fmt.Errorf("missing parent")
   979  	}
   980  	// Sanity check the timestamp correctness, recap the timestamp
   981  	// to parent+1 if the mutation is allowed.
   982  	timestamp := genParams.timestamp
   983  	if parent.Time() >= timestamp {
   984  		if genParams.forceTime {
   985  			return nil, fmt.Errorf("invalid timestamp, parent %d given %d", parent.Time(), timestamp)
   986  		}
   987  		timestamp = parent.Time() + 1
   988  	}
   989  	// Construct the sealing block header, set the extra field if it's allowed
   990  	num := parent.Number()
   991  	header := &types.Header{
   992  		ParentHash: parent.Hash(),
   993  		Number:     num.Add(num, common.Big1),
   994  		GasLimit:   core.CalcGasLimit(parent.GasLimit(), w.config.GasCeil),
   995  		Time:       timestamp,
   996  		Coinbase:   genParams.coinbase,
   997  	}
   998  	if !genParams.noExtra && len(w.extra) != 0 {
   999  		header.Extra = w.extra
  1000  	}
  1001  	// Set the randomness field from the beacon chain if it's available.
  1002  	if genParams.random != (common.Hash{}) {
  1003  		header.MixDigest = genParams.random
  1004  	}
  1005  	// Set baseFee and GasLimit if we are on an EIP-1559 chain
  1006  	if w.chainConfig.IsLondon(header.Number) {
  1007  		header.BaseFee = misc.CalcBaseFee(w.chainConfig, parent.Header())
  1008  		if !w.chainConfig.IsLondon(parent.Number()) {
  1009  			parentGasLimit := parent.GasLimit() * params.ElasticityMultiplier
  1010  			header.GasLimit = core.CalcGasLimit(parentGasLimit, w.config.GasCeil)
  1011  		}
  1012  	}
  1013  	// Run the consensus preparation with the default or customized consensus engine.
  1014  	if err := w.engine.Prepare(w.chain, header); err != nil {
  1015  		log.Error("Failed to prepare header for sealing", "err", err)
  1016  		return nil, err
  1017  	}
  1018  	// Could potentially happen if starting to mine in an odd state.
  1019  	// Note genParams.coinbase can be different with header.Coinbase
  1020  	// since clique algorithm can modify the coinbase field in header.
  1021  	env, err := w.makeEnv(parent, header, genParams.coinbase)
  1022  	if err != nil {
  1023  		log.Error("Failed to create sealing context", "err", err)
  1024  		return nil, err
  1025  	}
  1026  	// Accumulate the uncles for the sealing work only if it's allowed.
  1027  	if !genParams.noUncle {
  1028  		commitUncles := func(blocks map[common.Hash]*types.Block) {
  1029  			for hash, uncle := range blocks {
  1030  				if len(env.uncles) == 2 {
  1031  					break
  1032  				}
  1033  				if err := w.commitUncle(env, uncle.Header()); err != nil {
  1034  					log.Trace("Possible uncle rejected", "hash", hash, "reason", err)
  1035  				} else {
  1036  					log.Debug("Committing new uncle to block", "hash", hash)
  1037  				}
  1038  			}
  1039  		}
  1040  		// Prefer to locally generated uncle
  1041  		commitUncles(w.localUncles)
  1042  		commitUncles(w.remoteUncles)
  1043  	}
  1044  	return env, nil
  1045  }
  1046  
  1047  // fillTransactions retrieves the pending transactions from the txpool and fills them
  1048  // into the given sealing block. The transaction selection and ordering strategy can
  1049  // be customized with the plugin in the future.
  1050  func (w *worker) fillTransactions(interrupt *int32, env *environment) error {
  1051  	// Split the pending transactions into locals and remotes
  1052  	// Fill the block with all available pending transactions.
  1053  	pending := w.eth.TxPool().Pending(true)
  1054  	localTxs, remoteTxs := make(map[common.Address]types.Transactions), pending
  1055  	for _, account := range w.eth.TxPool().Locals() {
  1056  		if txs := remoteTxs[account]; len(txs) > 0 {
  1057  			delete(remoteTxs, account)
  1058  			localTxs[account] = txs
  1059  		}
  1060  	}
  1061  	if len(localTxs) > 0 {
  1062  		txs := types.NewTransactionsByPriceAndNonce(env.signer, localTxs, env.header.BaseFee)
  1063  		if err := w.commitTransactions(env, txs, interrupt); err != nil {
  1064  			return err
  1065  		}
  1066  	}
  1067  	if len(remoteTxs) > 0 {
  1068  		txs := types.NewTransactionsByPriceAndNonce(env.signer, remoteTxs, env.header.BaseFee)
  1069  		if err := w.commitTransactions(env, txs, interrupt); err != nil {
  1070  			return err
  1071  		}
  1072  	}
  1073  	return nil
  1074  }
  1075  
  1076  // generateWork generates a sealing block based on the given parameters.
  1077  func (w *worker) generateWork(params *generateParams) (*types.Block, error) {
  1078  	work, err := w.prepareWork(params)
  1079  	if err != nil {
  1080  		return nil, err
  1081  	}
  1082  	defer work.discard()
  1083  
  1084  	if !params.noTxs {
  1085  		w.fillTransactions(nil, work)
  1086  	}
  1087  	return w.engine.FinalizeAndAssemble(w.chain, work.header, work.state, work.txs, work.unclelist(), work.receipts)
  1088  }
  1089  
  1090  // commitWork generates several new sealing tasks based on the parent block
  1091  // and submit them to the sealer.
  1092  func (w *worker) commitWork(interrupt *int32, noempty bool, timestamp int64) {
  1093  	start := time.Now()
  1094  
  1095  	// Set the coinbase if the worker is running or it's required
  1096  	var coinbase common.Address
  1097  	if w.isRunning() {
  1098  		if w.coinbase == (common.Address{}) {
  1099  			log.Error("Refusing to mine without etherbase")
  1100  			return
  1101  		}
  1102  		coinbase = w.coinbase // Use the preset address as the fee recipient
  1103  	}
  1104  	work, err := w.prepareWork(&generateParams{
  1105  		timestamp: uint64(timestamp),
  1106  		coinbase:  coinbase,
  1107  	})
  1108  	if err != nil {
  1109  		return
  1110  	}
  1111  	// Create an empty block based on temporary copied state for
  1112  	// sealing in advance without waiting block execution finished.
  1113  	if !noempty && atomic.LoadUint32(&w.noempty) == 0 {
  1114  		w.commit(work.copy(), nil, false, start)
  1115  	}
  1116  
  1117  	// Fill pending transactions from the txpool
  1118  	err = w.fillTransactions(interrupt, work)
  1119  	if errors.Is(err, errBlockInterruptedByNewHead) {
  1120  		work.discard()
  1121  		return
  1122  	}
  1123  	w.commit(work.copy(), w.fullTaskHook, true, start)
  1124  
  1125  	// Swap out the old work with the new one, terminating any leftover
  1126  	// prefetcher processes in the mean time and starting a new one.
  1127  	if w.current != nil {
  1128  		w.current.discard()
  1129  	}
  1130  	w.current = work
  1131  }
  1132  
  1133  // commit runs any post-transaction state modifications, assembles the final block
  1134  // and commits new work if consensus engine is running.
  1135  // Note the assumption is held that the mutation is allowed to the passed env, do
  1136  // the deep copy first.
  1137  func (w *worker) commit(env *environment, interval func(), update bool, start time.Time) error {
  1138  	if w.isRunning() {
  1139  		if interval != nil {
  1140  			interval()
  1141  		}
  1142  		// Create a local environment copy, avoid the data race with snapshot state.
  1143  		// https://github.com/daethereum/go-dae/issues/24299
  1144  		env := env.copy()
  1145  		block, err := w.engine.FinalizeAndAssemble(w.chain, env.header, env.state, env.txs, env.unclelist(), env.receipts)
  1146  		if err != nil {
  1147  			return err
  1148  		}
  1149  		// If we're post merge, just ignore
  1150  		if !w.isTTDReached(block.Header()) {
  1151  			select {
  1152  			case w.taskCh <- &task{receipts: env.receipts, state: env.state, block: block, createdAt: time.Now()}:
  1153  				w.unconfirmed.Shift(block.NumberU64() - 1)
  1154  				log.Info("Commit new sealing work", "number", block.Number(), "sealhash", w.engine.SealHash(block.Header()),
  1155  					"uncles", len(env.uncles), "txs", env.tcount,
  1156  					"gas", block.GasUsed(), "fees", totalFees(block, env.receipts),
  1157  					"elapsed", common.PrettyDuration(time.Since(start)))
  1158  
  1159  			case <-w.exitCh:
  1160  				log.Info("Worker has exited")
  1161  			}
  1162  		}
  1163  	}
  1164  	if update {
  1165  		w.updateSnapshot(env)
  1166  	}
  1167  	return nil
  1168  }
  1169  
  1170  // getSealingBlock generates the sealing block based on the given parameters.
  1171  // The generation result will be passed back via the given channel no matter
  1172  // the generation itself succeeds or not.
  1173  func (w *worker) getSealingBlock(parent common.Hash, timestamp uint64, coinbase common.Address, random common.Hash, noTxs bool) (chan *types.Block, chan error, error) {
  1174  	var (
  1175  		resCh = make(chan *types.Block, 1)
  1176  		errCh = make(chan error, 1)
  1177  	)
  1178  	req := &getWorkReq{
  1179  		params: &generateParams{
  1180  			timestamp:  timestamp,
  1181  			forceTime:  true,
  1182  			parentHash: parent,
  1183  			coinbase:   coinbase,
  1184  			random:     random,
  1185  			noUncle:    true,
  1186  			noExtra:    true,
  1187  			noTxs:      noTxs,
  1188  		},
  1189  		result: resCh,
  1190  		err:    errCh,
  1191  	}
  1192  	select {
  1193  	case w.getWorkCh <- req:
  1194  		return resCh, errCh, nil
  1195  	case <-w.exitCh:
  1196  		return nil, nil, errors.New("miner closed")
  1197  	}
  1198  }
  1199  
  1200  // isTTDReached returns the indicator if the given block has reached the total
  1201  // terminal difficulty for The Merge transition.
  1202  func (w *worker) isTTDReached(header *types.Header) bool {
  1203  	td, ttd := w.chain.GetTd(header.ParentHash, header.Number.Uint64()-1), w.chain.Config().TerminalTotalDifficulty
  1204  	return td != nil && ttd != nil && td.Cmp(ttd) >= 0
  1205  }
  1206  
  1207  // copyReceipts makes a deep copy of the given receipts.
  1208  func copyReceipts(receipts []*types.Receipt) []*types.Receipt {
  1209  	result := make([]*types.Receipt, len(receipts))
  1210  	for i, l := range receipts {
  1211  		cpy := *l
  1212  		result[i] = &cpy
  1213  	}
  1214  	return result
  1215  }
  1216  
  1217  // postSideBlock fires a side chain event, only use it for testing.
  1218  func (w *worker) postSideBlock(event core.ChainSideEvent) {
  1219  	select {
  1220  	case w.chainSideCh <- event:
  1221  	case <-w.exitCh:
  1222  	}
  1223  }
  1224  
  1225  // totalFees computes total consumed miner fees in ETH. Block transactions and receipts have to have the same order.
  1226  func totalFees(block *types.Block, receipts []*types.Receipt) *big.Float {
  1227  	feesWei := new(big.Int)
  1228  	for i, tx := range block.Transactions() {
  1229  		minerFee, _ := tx.EffectiveGasTip(block.BaseFee())
  1230  		feesWei.Add(feesWei, new(big.Int).Mul(new(big.Int).SetUint64(receipts[i].GasUsed), minerFee))
  1231  	}
  1232  	return new(big.Float).Quo(new(big.Float).SetInt(feesWei), new(big.Float).SetInt(big.NewInt(params.Ether)))
  1233  }