aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/utils/flags.go
diff options
context:
space:
mode:
authorMeng-Ying Yang <garfield@dexon.org>2019-01-09 15:21:41 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:27:21 +0800
commit76e3cdf65fdb86c6e87e3e31c801fa5e0a4bbcfd (patch)
treef5dd9a99a79c47270dec29e1a744cdbeb41940f5 /cmd/utils/flags.go
parent8426a6bcab1158433f743348d35dcf01016d5ac2 (diff)
downloadgo-tangerine-76e3cdf65fdb86c6e87e3e31c801fa5e0a4bbcfd.tar
go-tangerine-76e3cdf65fdb86c6e87e3e31c801fa5e0a4bbcfd.tar.gz
go-tangerine-76e3cdf65fdb86c6e87e3e31c801fa5e0a4bbcfd.tar.bz2
go-tangerine-76e3cdf65fdb86c6e87e3e31c801fa5e0a4bbcfd.tar.lz
go-tangerine-76e3cdf65fdb86c6e87e3e31c801fa5e0a4bbcfd.tar.xz
go-tangerine-76e3cdf65fdb86c6e87e3e31c801fa5e0a4bbcfd.tar.zst
go-tangerine-76e3cdf65fdb86c6e87e3e31c801fa5e0a4bbcfd.zip
indexer: pass network-related params through config (#133)
Pass following network related params: * Genesis block * Network ID And sync mode for indexer configuration.
Diffstat (limited to 'cmd/utils/flags.go')
-rw-r--r--cmd/utils/flags.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index 1f1db9fc3..bfe565c30 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -1311,6 +1311,10 @@ func setIndexerConfig(ctx *cli.Context, cfg *dex.Config) {
cfg.Indexer.Plugin = ctx.GlobalString(IndexerPluginFlag.Name)
cfg.Indexer.PluginFlags = ctx.GlobalString(IndexerPluginFlagsFlag.Name)
+ // copy required dex configs
+ cfg.Indexer.Genesis = cfg.Genesis
+ cfg.Indexer.NetworkID = cfg.NetworkId
+ cfg.Indexer.SyncMode = cfg.SyncMode
}
// SetDashboardConfig applies dashboard related command line flags to the config.