aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJeffrey Wilcke <geffobscura@gmail.com>2015-08-06 19:29:06 +0800
committerJeffrey Wilcke <geffobscura@gmail.com>2015-08-06 19:29:06 +0800
commit74f6d90153a4d62eefaa8a49f98dc6ed8e0100f6 (patch)
treee3611a7b492b7ed9a359fa3100939853f6f8f6ae /core
parent82ef26f6007986debd6ce082f57050f0c7e36006 (diff)
downloaddexon-74f6d90153a4d62eefaa8a49f98dc6ed8e0100f6.tar
dexon-74f6d90153a4d62eefaa8a49f98dc6ed8e0100f6.tar.gz
dexon-74f6d90153a4d62eefaa8a49f98dc6ed8e0100f6.tar.bz2
dexon-74f6d90153a4d62eefaa8a49f98dc6ed8e0100f6.tar.lz
dexon-74f6d90153a4d62eefaa8a49f98dc6ed8e0100f6.tar.xz
dexon-74f6d90153a4d62eefaa8a49f98dc6ed8e0100f6.tar.zst
dexon-74f6d90153a4d62eefaa8a49f98dc6ed8e0100f6.zip
cmd/utils, core: disable exp diff for olympic net
Diffstat (limited to 'core')
-rw-r--r--core/chain_util.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/chain_util.go b/core/chain_util.go
index 34f6c8d0a..84b462ce3 100644
--- a/core/chain_util.go
+++ b/core/chain_util.go
@@ -32,7 +32,7 @@ import (
var (
blockHashPre = []byte("block-hash-")
blockNumPre = []byte("block-num-")
- expDiffPeriod = big.NewInt(100000)
+ ExpDiffPeriod = big.NewInt(100000)
)
// CalcDifficulty is the difficulty adjustment algorithm. It returns
@@ -57,7 +57,7 @@ func CalcDifficulty(time, parentTime uint64, parentNumber, parentDiff *big.Int)
}
periodCount := new(big.Int).Add(parentNumber, common.Big1)
- periodCount.Div(periodCount, expDiffPeriod)
+ periodCount.Div(periodCount, ExpDiffPeriod)
if periodCount.Cmp(common.Big1) > 0 {
// diff = diff + 2^(periodCount - 2)
expDiff := periodCount.Sub(periodCount, common.Big2)