diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-03-17 11:08:49 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:58 +0800 |
commit | a843206090d68fdbd2a5b254385cb19fb1714776 (patch) | |
tree | 595d6fd84a3dc186423caac61ceb35149d5b3d25 /core | |
parent | 64f26af59d24881bcdd49bbdd291c1a21a12b82d (diff) | |
download | dexon-a843206090d68fdbd2a5b254385cb19fb1714776.tar dexon-a843206090d68fdbd2a5b254385cb19fb1714776.tar.gz dexon-a843206090d68fdbd2a5b254385cb19fb1714776.tar.bz2 dexon-a843206090d68fdbd2a5b254385cb19fb1714776.tar.lz dexon-a843206090d68fdbd2a5b254385cb19fb1714776.tar.xz dexon-a843206090d68fdbd2a5b254385cb19fb1714776.tar.zst dexon-a843206090d68fdbd2a5b254385cb19fb1714776.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) { |