aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-11-15 13:30:50 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 13:49:57 +0800
commita31f09d410d270843144c9accc92251e79f45d1d (patch)
tree23ecffa90fdc591d33686c60beb584d9b40b99c7 /eth
parent370f20bdf73d99051ef89c411778f6a59634b133 (diff)
downloaddexon-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 'eth')
-rw-r--r--eth/backend.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/backend.go b/eth/backend.go
index 04e4569f2..a6a558823 100644
--- a/eth/backend.go
+++ b/eth/backend.go
@@ -173,7 +173,7 @@ func New(ctx *node.ServiceContext, config *Config) (*Ethereum, error) {
if config.TxPool.Journal != "" {
config.TxPool.Journal = ctx.ResolvePath(config.TxPool.Journal)
}
- eth.txPool = core.NewTxPool(config.TxPool, eth.chainConfig, eth.blockchain)
+ eth.txPool = core.NewTxPool(config.TxPool, eth.chainConfig, eth.blockchain, false)
if eth.protocolManager, err = NewProtocolManager(eth.chainConfig, config.SyncMode, config.NetworkId, eth.eventMux, eth.txPool, eth.engine, eth.blockchain, chainDb, config.Whitelist); err != nil {
return nil, err