aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2019-03-17 09:12:50 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 13:50:04 +0800
commit9d1b6a0d3f2645a84c6e2da29a933fb4a6f7f547 (patch)
treef6d859629fa413c3b3ed1624b5262798e6d5afac /cmd
parentfc2f94990eeac244ccb50fea5d6fda63b67ccc69 (diff)
downloaddexon-9d1b6a0d3f2645a84c6e2da29a933fb4a6f7f547.tar
dexon-9d1b6a0d3f2645a84c6e2da29a933fb4a6f7f547.tar.gz
dexon-9d1b6a0d3f2645a84c6e2da29a933fb4a6f7f547.tar.bz2
dexon-9d1b6a0d3f2645a84c6e2da29a933fb4a6f7f547.tar.lz
dexon-9d1b6a0d3f2645a84c6e2da29a933fb4a6f7f547.tar.xz
dexon-9d1b6a0d3f2645a84c6e2da29a933fb4a6f7f547.tar.zst
dexon-9d1b6a0d3f2645a84c6e2da29a933fb4a6f7f547.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 'cmd')
-rw-r--r--cmd/gdex/main.go1
-rw-r--r--cmd/utils/flags.go21
2 files changed, 22 insertions, 0 deletions
diff --git a/cmd/gdex/main.go b/cmd/gdex/main.go
index b66d09720..3796691ee 100644
--- a/cmd/gdex/main.go
+++ b/cmd/gdex/main.go
@@ -138,6 +138,7 @@ var (
utils.IndexerEnableFlag,
utils.IndexerPluginFlag,
utils.IndexerPluginFlagsFlag,
+ utils.RecoveryNetworkRPCFlag,
configFileFlag,
}
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index c6d60d0bb..6b0c682a7 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -664,6 +664,13 @@ var (
Usage: "External indexer plugin's flags if needed",
Value: "",
}
+
+ // Dexcon settings.
+ RecoveryNetworkRPCFlag = cli.StringFlag{
+ Name: "recovery.network-rpc",
+ Usage: "RPC URL of the recovery network",
+ Value: "https://mainnet.infura.io",
+ }
)
// MakeDataDir retrieves the currently requested data directory, terminating
@@ -1257,27 +1264,41 @@ func SetDexConfig(ctx *cli.Context, stack *node.Node, cfg *dex.Config) {
cfg.RPCGasCap = new(big.Int).SetUint64(ctx.GlobalUint64(RPCGlobalGasCap.Name))
}
+ cfg.RecoveryNetworkRPC = ctx.GlobalString(RecoveryNetworkRPCFlag.Name)
+
// Override any default configs for hard coded networks.
switch {
case ctx.GlobalBool(TestnetFlag.Name):
if !ctx.GlobalIsSet(NetworkIdFlag.Name) {
cfg.NetworkId = 238
}
+ if !ctx.GlobalIsSet(RecoveryNetworkRPCFlag.Name) {
+ cfg.RecoveryNetworkRPC = "http://rinkeby.infura.io"
+ }
cfg.Genesis = core.DefaultTestnetGenesisBlock()
case ctx.GlobalBool(TaipeiFlag.Name):
if !ctx.GlobalIsSet(NetworkIdFlag.Name) {
cfg.NetworkId = 239
}
+ if !ctx.GlobalIsSet(RecoveryNetworkRPCFlag.Name) {
+ cfg.RecoveryNetworkRPC = "http://rinkeby.infura.io"
+ }
cfg.Genesis = core.DefaultTaipeiGenesisBlock()
case ctx.GlobalBool(YilanFlag.Name):
if !ctx.GlobalIsSet(NetworkIdFlag.Name) {
cfg.NetworkId = 240
}
+ if !ctx.GlobalIsSet(RecoveryNetworkRPCFlag.Name) {
+ cfg.RecoveryNetworkRPC = "http://rinkeby.infura.io"
+ }
cfg.Genesis = core.DefaultYilanGenesisBlock()
case ctx.GlobalBool(DeveloperFlag.Name):
if !ctx.GlobalIsSet(NetworkIdFlag.Name) {
cfg.NetworkId = 1337
}
+ if !ctx.GlobalIsSet(RecoveryNetworkRPCFlag.Name) {
+ cfg.RecoveryNetworkRPC = "http://rinkeby.infura.io"
+ }
// Create new developer account or reuse existing one
var (
developer accounts.Account