diff options
author | bojie <bojie@dexon.org> | 2019-01-31 18:23:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-31 18:23:46 +0800 |
commit | bae9b4372d2f5cfa5c24182d173c86872797576b (patch) | |
tree | afdde3246de7f49df70f0e2f4b926b9bce0b5f61 /core | |
parent | 198bf033eb5cb2a241469c879a55e20c9cb5faae (diff) | |
download | dexon-bae9b4372d2f5cfa5c24182d173c86872797576b.tar dexon-bae9b4372d2f5cfa5c24182d173c86872797576b.tar.gz dexon-bae9b4372d2f5cfa5c24182d173c86872797576b.tar.bz2 dexon-bae9b4372d2f5cfa5c24182d173c86872797576b.tar.lz dexon-bae9b4372d2f5cfa5c24182d173c86872797576b.tar.xz dexon-bae9b4372d2f5cfa5c24182d173c86872797576b.tar.zst dexon-bae9b4372d2f5cfa5c24182d173c86872797576b.zip |
transaction: use all transaction gas to reduce attack intention (#180)
The ci test in /tests will use origin evm logic.
Diffstat (limited to 'core')
-rw-r--r-- | core/state_transition.go | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/core/state_transition.go b/core/state_transition.go index 3b5ea6a2f..ce05e54a2 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -18,6 +18,7 @@ package core import ( "errors" + "flag" "math" "math/big" @@ -27,6 +28,8 @@ import ( "github.com/dexon-foundation/dexon/params" ) +var legacyEvm = flag.Bool("legacy-evm", false, "make evm run origin logic") + var ( errInsufficientBalanceForGas = errors.New("insufficient balance to pay for gas") ) @@ -221,12 +224,33 @@ func (st *StateTransition) TransitionDb() (ret []byte, usedGas uint64, failed bo return nil, 0, false, vmerr } } - st.refundGas() + + if *legacyEvm { + st.refundGas() + } else { + st.dexonRefundGas() + } st.state.AddBalance(st.evm.Coinbase, new(big.Int).Mul(new(big.Int).SetUint64(st.gasUsed()), st.gasPrice)) return ret, st.gasUsed(), vmerr != nil, err } +func (st *StateTransition) dexonRefundGas() { + // Apply refund counter, capped to half of the used gas. + refund := st.gasUsed() / 2 + if refund > st.state.GetRefund() { + refund = st.state.GetRefund() + } + + // 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) + + // Also return remaining gas to the block gas counter so it is + // available for the next transaction. + st.gp.AddGas(refund) +} + func (st *StateTransition) refundGas() { // Apply refund counter, capped to half of the used gas. refund := st.gasUsed() / 2 |