diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-03-17 09:12:50 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:23 +0800 |
commit | 9493109f2be4507605e6b17e406bf8fd147ab3c8 (patch) | |
tree | 84fee3d1fb2095ff5ba793bdfccba89970bc8f89 /test/genesis.json | |
parent | 9ee92eff068b09246ab6446efa39abfc0c7bd8a8 (diff) | |
download | go-tangerine-9493109f2be4507605e6b17e406bf8fd147ab3c8.tar go-tangerine-9493109f2be4507605e6b17e406bf8fd147ab3c8.tar.gz go-tangerine-9493109f2be4507605e6b17e406bf8fd147ab3c8.tar.bz2 go-tangerine-9493109f2be4507605e6b17e406bf8fd147ab3c8.tar.lz go-tangerine-9493109f2be4507605e6b17e406bf8fd147ab3c8.tar.xz go-tangerine-9493109f2be4507605e6b17e406bf8fd147ab3c8.tar.zst go-tangerine-9493109f2be4507605e6b17e406bf8fd147ab3c8.zip |
dex: implement recovery mechanism (#258)
* dex: implement recovery mechanism
The DEXON recovery protocol allows us to use the Ethereum blockchain as a
fallback consensus chain to coordinate recovery.
* fix
Diffstat (limited to 'test/genesis.json')
-rw-r--r-- | test/genesis.json | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/test/genesis.json b/test/genesis.json index fc6cd7fe4..8be5a844d 100644 --- a/test/genesis.json +++ b/test/genesis.json @@ -19,6 +19,7 @@ "miningVelocity": 0.1875, "nextHalvingSupply": "0x813f3978f89409844000000", "lastHalvedAmount": "0x4d8c55aefb8c05b5c000000", + "minGasPrice": "0x3b9aca00", "blockGasLimit": 40000000, "lambdaBA": 250, "lambdaDKG": 1500, @@ -30,8 +31,12 @@ "0x21e19e0c9bab2400000", "0x21e19e0c9bab2400000", "0x152d02c7e14af6800000" - ], - "minGasPrice": "0x3b9aca00" + ] + }, + "recovery": { + "contract": "0xf675c0e9bf4b949f50dcec5b224a70f0361d4680", + "timeout": 30, + "confirmation": 1 } }, "nonce": "0x42", |