diff options
author | bojie <bojie@dexon.org> | 2019-02-23 15:35:56 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | b722fc5efecbb33d9d62636ff7b3bacffbb3d69a (patch) | |
tree | da0902910573662f4231668793da23a19786cc61 | |
parent | f029106315852918f894417cfa54a27819159626 (diff) | |
download | dexon-b722fc5efecbb33d9d62636ff7b3bacffbb3d69a.tar.gz dexon-b722fc5efecbb33d9d62636ff7b3bacffbb3d69a.tar.zst dexon-b722fc5efecbb33d9d62636ff7b3bacffbb3d69a.zip |
fee: fix wrong gas used (#208)
-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) |