Skip to content

Commit b0b2b76

Browse files
authoredMar 23, 2025··
internal/ethapi: return code 3 from call/estimateGas even if a revert reason was not returned (#31456)
1 parent 624a5d8 commit b0b2b76

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎internal/ethapi/api.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -761,8 +761,7 @@ func (api *BlockChainAPI) Call(ctx context.Context, args TransactionArgs, blockN
761761
if err != nil {
762762
return nil, err
763763
}
764-
// If the result contains a revert reason, try to unpack and return it.
765-
if len(result.Revert()) > 0 {
764+
if errors.Is(result.Err, vm.ErrExecutionReverted) {
766765
return nil, newRevertError(result.Revert())
767766
}
768767
return result.Return(), result.Err
@@ -842,7 +841,7 @@ func DoEstimateGas(ctx context.Context, b Backend, args TransactionArgs, blockNr
842841
// Run the gas estimation and wrap any revertals into a custom return
843842
estimate, revert, err := gasestimator.Estimate(ctx, call, opts, gasCap)
844843
if err != nil {
845-
if len(revert) > 0 {
844+
if errors.Is(err, vm.ErrExecutionReverted) {
846845
return 0, newRevertError(revert)
847846
}
848847
return 0, err

0 commit comments

Comments
 (0)
Please sign in to comment.