aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorbojie <bojie@dexon.org>2019-02-23 15:35:56 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:57 +0800
commit94477130cc35bd196b23267b4be130668a13b74c (patch)
tree190439b10d1c478ebdc1c06201b56a64c7b7ff57 /core
parent502d5c79819109bbed2adc91ee8b3efdcbd1ddfa (diff)
downloaddexon-94477130cc35bd196b23267b4be130668a13b74c.tar
dexon-94477130cc35bd196b23267b4be130668a13b74c.tar.gz
dexon-94477130cc35bd196b23267b4be130668a13b74c.tar.bz2
dexon-94477130cc35bd196b23267b4be130668a13b74c.tar.lz
dexon-94477130cc35bd196b23267b4be130668a13b74c.tar.xz
dexon-94477130cc35bd196b23267b4be130668a13b74c.tar.zst
dexon-94477130cc35bd196b23267b4be130668a13b74c.zip
fee: fix wrong gas used (#208)
Diffstat (limited to 'core')
-rw-r--r--core/state_transition.go2
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)