diff options
-rw-r--r-- | core/state_transition.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/state_transition.go b/core/state_transition.go index ce05e54a2..02d58575b 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -242,6 +242,8 @@ func (st *StateTransition) dexonRefundGas() { refund = st.state.GetRefund() } + st.gas = refund + // Return ETH for remaining gas, exchanged at the original rate. remaining := new(big.Int).Mul(new(big.Int).SetUint64(refund), st.gasPrice) st.state.AddBalance(st.msg.From(), remaining) |