diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2019-02-22 13:14:55 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:22 +0800 |
commit | 2354d4aa747616a8fd4fb9482ada8042fd362139 (patch) | |
tree | 46fe0953c0258591c2cd415c3760764ff613a5bb /test | |
parent | 81193a683d6328b627ee0e5f0f3689b3473e29ea (diff) | |
download | go-tangerine-2354d4aa747616a8fd4fb9482ada8042fd362139.tar go-tangerine-2354d4aa747616a8fd4fb9482ada8042fd362139.tar.gz go-tangerine-2354d4aa747616a8fd4fb9482ada8042fd362139.tar.bz2 go-tangerine-2354d4aa747616a8fd4fb9482ada8042fd362139.tar.lz go-tangerine-2354d4aa747616a8fd4fb9482ada8042fd362139.tar.xz go-tangerine-2354d4aa747616a8fd4fb9482ada8042fd362139.tar.zst go-tangerine-2354d4aa747616a8fd4fb9482ada8042fd362139.zip |
core: Remove K, Phi and NumChains from Governance (#198)
* change default sync_core.sh
* vendor: sync to latest core
* core: Remove K, Phi and NumChain
Diffstat (limited to 'test')
-rw-r--r-- | test/genesis.json | 5 | ||||
-rwxr-xr-x | test/sync_core.sh | 2 |
2 files changed, 2 insertions, 5 deletions
diff --git a/test/genesis.json b/test/genesis.json index 0785f36c7..96ad4924c 100644 --- a/test/genesis.json +++ b/test/genesis.json @@ -20,14 +20,11 @@ "nextHalvingSupply": "0x813f3978f89409844000000", "lastHalvedAmount": "0x4d8c55aefb8c05b5c000000", "blockGasLimit": 40000000, - "numChains": 6, "lambdaBA": 250, "lambdaDKG": 2500, - "k": 0, - "phiRatio": 0.667, "notarySetSize": 4, "dkgSetSize": 4, - "roundInterval": 90000, + "roundLength": 90, "minBlockInterval": 1000, "fineValues": [ "0x21e19e0c9bab2400000", diff --git a/test/sync_core.sh b/test/sync_core.sh index 5e09c47cc..2062de6f4 100755 --- a/test/sync_core.sh +++ b/test/sync_core.sh @@ -1,3 +1,3 @@ #!/bin/bash -govendor fetch github.com/dexon-foundation/dexon-consensus/... +govendor fetch github.com/dexon-foundation/dexon-consensus/...@single-chain |