diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-15 13:30:50 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:57 +0800 |
commit | a31f09d410d270843144c9accc92251e79f45d1d (patch) | |
tree | 23ecffa90fdc591d33686c60beb584d9b40b99c7 /cmd | |
parent | 370f20bdf73d99051ef89c411778f6a59634b133 (diff) | |
download | dexon-a31f09d410d270843144c9accc92251e79f45d1d.tar dexon-a31f09d410d270843144c9accc92251e79f45d1d.tar.gz dexon-a31f09d410d270843144c9accc92251e79f45d1d.tar.bz2 dexon-a31f09d410d270843144c9accc92251e79f45d1d.tar.lz dexon-a31f09d410d270843144c9accc92251e79f45d1d.tar.xz dexon-a31f09d410d270843144c9accc92251e79f45d1d.tar.zst dexon-a31f09d410d270843144c9accc92251e79f45d1d.zip |
core: refactor validator and fix light node sync (#25)
Remove custom Dexon validator by adding a new `ValidateWitnessData`
method into the validator interface. This allow us to properly detect
know blocks. This also allow other gdex "light" client to sync
compaction chain. Also, setup a standalone RPC node for handling RPC
reqeusts.
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/utils/flags.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 0ea9761d2..514899699 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -1176,6 +1176,10 @@ func SetDexConfig(ctx *cli.Context, stack *node.Node, cfg *dex.Config) { if ctx.GlobalIsSet(NetworkIdFlag.Name) { cfg.NetworkId = ctx.GlobalUint64(NetworkIdFlag.Name) } + if ctx.GlobalIsSet(BlockProposerEnabledFlag.Name) { + cfg.BlockProposerEnabled = ctx.GlobalBool(BlockProposerEnabledFlag.Name) + } + if ctx.GlobalIsSet(CacheFlag.Name) || ctx.GlobalIsSet(CacheDatabaseFlag.Name) { cfg.DatabaseCache = ctx.GlobalInt(CacheFlag.Name) * ctx.GlobalInt(CacheDatabaseFlag.Name) / 100 } |