diff --git a/miner/worker.go b/miner/worker.go index d9aa5e441531..ac3b99ce89a2 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -1248,6 +1248,10 @@ func (w *worker) computeBundleGas(bundle types.Transactions, parent *types.Block if err != nil { return nil, 0, err } + if receipt.Status == types.ReceiptStatusFailed { + return nil, 0, errors.New("revert") + } + totalGasUsed += receipt.GasUsed gasFees.Add(gasFees, new(big.Int).Mul(big.NewInt(int64(totalGasUsed)), tx.GasPrice())) }