diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-03-17 09:12:50 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:58 +0800 |
commit | 2818ad97f5b302f76e3296195bf8daae1868c435 (patch) | |
tree | 0e055a8dc82f8a473f877400074dffe7b811090c /dex/config.go | |
parent | 9c9073db149d89eb31dc7c68d440b359f42fe8e9 (diff) | |
download | go-tangerine-2818ad97f5b302f76e3296195bf8daae1868c435.tar go-tangerine-2818ad97f5b302f76e3296195bf8daae1868c435.tar.gz go-tangerine-2818ad97f5b302f76e3296195bf8daae1868c435.tar.bz2 go-tangerine-2818ad97f5b302f76e3296195bf8daae1868c435.tar.lz go-tangerine-2818ad97f5b302f76e3296195bf8daae1868c435.tar.xz go-tangerine-2818ad97f5b302f76e3296195bf8daae1868c435.tar.zst go-tangerine-2818ad97f5b302f76e3296195bf8daae1868c435.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 'dex/config.go')
-rw-r--r-- | dex/config.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dex/config.go b/dex/config.go index 7661907cc..d218b35e2 100644 --- a/dex/config.go +++ b/dex/config.go @@ -126,4 +126,7 @@ type Config struct { // Indexer config Indexer indexer.Config + + // Recovery network RPC + RecoveryNetworkRPC string } |