diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2019-01-17 16:36:37 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:21 +0800 |
commit | fe51a95f23652e36b361d50de733397c4e28c26d (patch) | |
tree | 4b2fc0e97a0fab6117e3ee537b38336cecd7d128 /params | |
parent | 942f13af2f683d9a1defe16676a36a9ae711b75e (diff) | |
download | go-tangerine-fe51a95f23652e36b361d50de733397c4e28c26d.tar go-tangerine-fe51a95f23652e36b361d50de733397c4e28c26d.tar.gz go-tangerine-fe51a95f23652e36b361d50de733397c4e28c26d.tar.bz2 go-tangerine-fe51a95f23652e36b361d50de733397c4e28c26d.tar.lz go-tangerine-fe51a95f23652e36b361d50de733397c4e28c26d.tar.xz go-tangerine-fe51a95f23652e36b361d50de733397c4e28c26d.tar.zst go-tangerine-fe51a95f23652e36b361d50de733397c4e28c26d.zip |
core: sync to latest core (#158)
* vendor: sync to latest core
* param: Update config
* core: update genesis alloc
Diffstat (limited to 'params')
-rw-r--r-- | params/config.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/params/config.go b/params/config.go index 053759b2b..8ac928bb5 100644 --- a/params/config.go +++ b/params/config.go @@ -129,7 +129,7 @@ var ( // TaipeiChainConfig contains the chain parameters to run a node on the Taipei test network. TaipeiChainConfig = &ChainConfig{ ChainID: big.NewInt(239), - DMoment: 0, + DMoment: 1547695800, HomesteadBlock: big.NewInt(0), DAOForkBlock: nil, DAOForkSupport: true, @@ -145,12 +145,12 @@ var ( MinStake: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(1e6)), LockupPeriod: 86400 * 3 * 1000, MiningVelocity: 0.1875, - NextHalvingSupply: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(4e7)), - LastHalvedAmount: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(8e6)), + NextHalvingSupply: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(8e9)), + LastHalvedAmount: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(1.6e9)), BlockGasLimit: 40000000, NumChains: 6, - LambdaBA: 400, - LambdaDKG: 10000, + LambdaBA: 3000, + LambdaDKG: 20000, K: 0, PhiRatio: 0.667, NotarySetSize: 21, |