diff options
author | Wei-Ning Huang <aitjcize@gmail.com> | 2018-11-12 11:34:02 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:53 +0800 |
commit | 07f8cae8805eff6bb4b5a0d82915ad8fb6aeb347 (patch) | |
tree | e0524472a70c4a236b206e7f5454d3d0d709c1ff /params | |
parent | f5a74ed705ebd6f58d724b007de8718f2da6aac2 (diff) | |
download | dexon-07f8cae8805eff6bb4b5a0d82915ad8fb6aeb347.tar dexon-07f8cae8805eff6bb4b5a0d82915ad8fb6aeb347.tar.gz dexon-07f8cae8805eff6bb4b5a0d82915ad8fb6aeb347.tar.bz2 dexon-07f8cae8805eff6bb4b5a0d82915ad8fb6aeb347.tar.lz dexon-07f8cae8805eff6bb4b5a0d82915ad8fb6aeb347.tar.xz dexon-07f8cae8805eff6bb4b5a0d82915ad8fb6aeb347.tar.zst dexon-07f8cae8805eff6bb4b5a0d82915ad8fb6aeb347.zip |
params: fix genesis block config and use testnet for test (#10)
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 e080f1572..253575c50 100644 --- a/params/config.go +++ b/params/config.go @@ -46,7 +46,7 @@ var ( PetersburgBlock: big.NewInt(0), Dexcon: &DexconConfig{ GenesisCRSText: "In DEXON, we trust.", - Owner: common.HexToAddress("7C3c31B19395A5e2627F921Cc2802560B71f1caB"), + Owner: common.HexToAddress("BF8C48A620bacc46907f9B89732D25E47A2D7Cf7"), BlockReward: big.NewInt(1e18), BlockGasLimit: 80000000, NumChains: 4, @@ -56,7 +56,7 @@ var ( PhiRatio: 667000, NotarySetSize: 4, DKGSetSize: 4, - RoundInterval: 99999999999, + RoundInterval: 600000, MinBlockInterval: 900, }, } @@ -84,7 +84,7 @@ var ( PetersburgBlock: big.NewInt(0), Dexcon: &DexconConfig{ GenesisCRSText: "In DEXON, we trust.", - Owner: common.HexToAddress("7C3c31B19395A5e2627F921Cc2802560B71f1caB"), + Owner: common.HexToAddress("BF8C48A620bacc46907f9B89732D25E47A2D7Cf7"), BlockReward: big.NewInt(1e18), BlockGasLimit: 80000000, NumChains: 4, @@ -94,7 +94,7 @@ var ( PhiRatio: 667000, NotarySetSize: 4, DKGSetSize: 4, - RoundInterval: 99999999999, + RoundInterval: 600000, MinBlockInterval: 900, }, } |