diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-01-06 23:21:54 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:21 +0800 |
commit | c6c8b6cfd083058a255d614db14df0e75fdd3482 (patch) | |
tree | 23fd25eec0a08923f2516fc688ad2487592ae928 /test | |
parent | 2b7671af8b76f64bcbe69d99509d454cb33be5ad (diff) | |
download | go-tangerine-c6c8b6cfd083058a255d614db14df0e75fdd3482.tar go-tangerine-c6c8b6cfd083058a255d614db14df0e75fdd3482.tar.gz go-tangerine-c6c8b6cfd083058a255d614db14df0e75fdd3482.tar.bz2 go-tangerine-c6c8b6cfd083058a255d614db14df0e75fdd3482.tar.lz go-tangerine-c6c8b6cfd083058a255d614db14df0e75fdd3482.tar.xz go-tangerine-c6c8b6cfd083058a255d614db14df0e75fdd3482.tar.zst go-tangerine-c6c8b6cfd083058a255d614db14df0e75fdd3482.zip |
core: vm: implement byzantine reporting mechanism (#128)
Diffstat (limited to 'test')
-rw-r--r-- | test/genesis.json | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/test/genesis.json b/test/genesis.json index 6a48eee29..c053120f5 100644 --- a/test/genesis.json +++ b/test/genesis.json @@ -2,17 +2,18 @@ "config": { "chainId": 238, "homesteadBlock": 0, - "daoForkBlock": 0, "daoForkSupport": true, "eip150Block": 0, "eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000", "eip155Block": 0, "eip158Block": 0, "byzantiumBlock": 0, + "constantinopleBlock": 0, "dexcon": { "genesisCRSText": "In DEXON, we trust.", - "owner": "0xBF8C48A620bacc46907f9B89732D25E47A2D7Cf7", + "owner": "0xbf8c48a620bacc46907f9b89732d25e47a2d7cf7", "minStake": "0x152d02c7e14af6800000", + "lockupPeriod": 259200000, "blockReward": "0xde0b6b3a7640000", "blockGasLimit": 40000000, "numChains": 6, @@ -23,7 +24,12 @@ "notarySetSize": 4, "dkgSetSize": 4, "roundInterval": 600000, - "minBlockInterval": 900 + "minBlockInterval": 900, + "fineValues": [ + "0x21e19e0c9bab2400000", + "0x21e19e0c9bab2400000", + "0x152d02c7e14af6800000" + ] } }, "nonce": "0x42", |