From a8dc798ad0d1a8474751d5626ac9ca6e71183eec Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Sat, 10 Apr 2021 14:45:13 -0700 Subject: [PATCH] Discard bundles with reverting txs Fixes #30 --- miner/worker.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/miner/worker.go b/miner/worker.go index 3dac8c21fc8d..861d10447f31 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -1284,6 +1284,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())) }