diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2019-01-23 13:04:02 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:21 +0800 |
commit | 36e65e7017fc87c44b52b736e09585fc2bfc1e3b (patch) | |
tree | 01c0bd136d560f8657b16aa2a4bc9270205306e7 /params | |
parent | d1d2cc0736440d7d6154df11f8cb9281c3e3f7f7 (diff) | |
download | go-tangerine-36e65e7017fc87c44b52b736e09585fc2bfc1e3b.tar go-tangerine-36e65e7017fc87c44b52b736e09585fc2bfc1e3b.tar.gz go-tangerine-36e65e7017fc87c44b52b736e09585fc2bfc1e3b.tar.bz2 go-tangerine-36e65e7017fc87c44b52b736e09585fc2bfc1e3b.tar.lz go-tangerine-36e65e7017fc87c44b52b736e09585fc2bfc1e3b.tar.xz go-tangerine-36e65e7017fc87c44b52b736e09585fc2bfc1e3b.tar.zst go-tangerine-36e65e7017fc87c44b52b736e09585fc2bfc1e3b.zip |
params: Update testnet config (#167)
* vendor: sync to latest core
* param: update testnet config
* params: update dmoment
Diffstat (limited to 'params')
-rw-r--r-- | params/config.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/params/config.go b/params/config.go index bc1df2468..7919931c1 100644 --- a/params/config.go +++ b/params/config.go @@ -27,7 +27,7 @@ import ( // Genesis hashes to enforce below configs on. var ( MainnetGenesisHash = common.HexToHash("0xe972af2797b02f4dab95ffa229714c35d5c55685f20261b9498c8b8a3fe33856") - TestnetGenesisHash = common.HexToHash("0xaa4414cf836c517a6c4e034d55f5133476d5795bfd2247a7f3375bce2bc3cc56") + TestnetGenesisHash = common.HexToHash("0xd38d11902c6e134bb85112c05a8faa92ae5189474591ac1343e849be29d7d643") ) // TrustedCheckpoints associates each known checkpoint with the genesis hash of @@ -90,7 +90,7 @@ var ( // TestnetChainConfig contains the chain parameters to run a node on the Taiwan test network. TestnetChainConfig = &ChainConfig{ ChainID: big.NewInt(238), - DMoment: 1547962500, + DMoment: 1548124200, HomesteadBlock: big.NewInt(0), DAOForkBlock: nil, DAOForkSupport: true, @@ -111,12 +111,12 @@ var ( BlockGasLimit: 40000000, NumChains: 6, LambdaBA: 250, - LambdaDKG: 2500, + LambdaDKG: 4000, K: 0, PhiRatio: 0.667, NotarySetSize: 4, DKGSetSize: 4, - RoundInterval: 600000, + RoundInterval: 1200000, MinBlockInterval: 1000, FineValues: []*big.Int{ new(big.Int).Mul(big.NewInt(1e18), big.NewInt(1e4)), |