@ -918,37 +918,22 @@ func (w *worker) commitTransactions(env *environment, txs *types.TransactionsByP
logs , err := w . commitTransaction ( env , tx )
switch {
case errors . Is ( err , core . ErrGasLimitReached ) :
// Pop the current out-of-gas transaction without shifting in the next from the account
log . Trace ( "Gas limit exceeded for current block" , "sender" , from )
txs . Pop ( )
case errors . Is ( err , core . ErrNonceTooLow ) :
// New head notification data race between the transaction pool and miner, shift
log . Trace ( "Skipping transaction with low nonce" , "sender" , from , "nonce" , tx . Nonce ( ) )
txs . Shift ( )
case errors . Is ( err , core . ErrNonceTooHigh ) :
// Reorg notification data race between the transaction pool and miner, skip account =
log . Trace ( "Skipping account with hight nonce" , "sender" , from , "nonce" , tx . Nonce ( ) )
txs . Pop ( )
case errors . Is ( err , nil ) :
// Everything ok, collect the logs and shift in the next transaction from the same account
coalescedLogs = append ( coalescedLogs , logs ... )
env . tcount ++
txs . Shift ( )
case errors . Is ( err , types . ErrTxTypeNotSupported ) :
// Pop the unsupported transaction without shifting in the next from the account
log . Trace ( "Skipping unsupported transaction type" , "sender" , from , "type" , tx . Type ( ) )
txs . Pop ( )
default :
// Strange error, discard the transaction and get the next in line (note, the
// nonce-too-high clause will prevent us from executing in vain) .
// Transaction is regarded as invalid, drop all consecutive transactions from
// the same sender because of `nonce-too-high` clause.
log . Debug ( "Transaction failed, account skipped" , "hash" , tx . Hash ( ) , "err" , err )
txs . Shift ( )
txs . Pop ( )
}
}
if ! w . isRunning ( ) && len ( coalescedLogs ) > 0 {