diff --git a/chain/vm/vm.go b/chain/vm/vm.go index be357a6c9..6866473e4 100644 --- a/chain/vm/vm.go +++ b/chain/vm/vm.go @@ -466,7 +466,7 @@ func (vm *VM) ApplyMessage(ctx context.Context, cmsg types.ChainMsg) (*ApplyRet, // burn overallocated gas burn := types.BigMul(types.NewInt(uint64(gasToBurn)), msg.GasPrice) if err := vm.transferFromGasHolder(builtin.BurntFundsActorAddr, gasHolder, burn); err != nil { - return nil, xerrors.Errorf("failed to refund gas") + return nil, xerrors.Errorf("failed to burn over estimated gas") } }