diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-03-17 11:08:49 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-17 11:49:23 +0800 |
commit | 916a530eb7d0e1f69b817d44659ee8f76568bcf0 (patch) | |
tree | 7990ed9f248436f8f0259528d23a0037de1bc652 /core | |
parent | abffdd7a5e23316403779dda6bd99909dd1a031b (diff) | |
download | dexon-916a530eb7d0e1f69b817d44659ee8f76568bcf0.tar dexon-916a530eb7d0e1f69b817d44659ee8f76568bcf0.tar.gz dexon-916a530eb7d0e1f69b817d44659ee8f76568bcf0.tar.bz2 dexon-916a530eb7d0e1f69b817d44659ee8f76568bcf0.tar.lz dexon-916a530eb7d0e1f69b817d44659ee8f76568bcf0.tar.xz dexon-916a530eb7d0e1f69b817d44659ee8f76568bcf0.tar.zst dexon-916a530eb7d0e1f69b817d44659ee8f76568bcf0.zip |
core: vm: reorder minGasPriceLoc
Diffstat (limited to 'core')
-rw-r--r-- | core/vm/oracle_contracts.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/oracle_contracts.go b/core/vm/oracle_contracts.go index d983cdfc8..56e82f7df 100644 --- a/core/vm/oracle_contracts.go +++ b/core/vm/oracle_contracts.go @@ -75,6 +75,7 @@ const ( miningVelocityLoc nextHalvingSupplyLoc lastHalvedAmountLoc + minGasPriceLoc blockGasLimitLoc lambdaBALoc lambdaDKGLoc @@ -84,7 +85,6 @@ const ( minBlockIntervalLoc fineValuesLoc finedRecordsLoc - minGasPriceLoc // TODO(w): reorder this before mainnet ) func publicKeyToNodeKeyAddress(pkBytes []byte) (common.Address, error) { |