aboutsummaryrefslogtreecommitdiffstats
path: root/p2p
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-11-15 13:30:50 +0800
committerWei-Ning Huang <w@dexon.org>2018-12-19 20:54:27 +0800
commitadb04994560c2558fc93c85ea5976b3744ca6b6b (patch)
tree6fb38620a06572fc5d51eefbee2e2646b807449f /p2p
parent61c27beb30c6b8919e3f83bee490bc75426dfa48 (diff)
downloaddexon-adb04994560c2558fc93c85ea5976b3744ca6b6b.tar
dexon-adb04994560c2558fc93c85ea5976b3744ca6b6b.tar.gz
dexon-adb04994560c2558fc93c85ea5976b3744ca6b6b.tar.bz2
dexon-adb04994560c2558fc93c85ea5976b3744ca6b6b.tar.lz
dexon-adb04994560c2558fc93c85ea5976b3744ca6b6b.tar.xz
dexon-adb04994560c2558fc93c85ea5976b3744ca6b6b.tar.zst
dexon-adb04994560c2558fc93c85ea5976b3744ca6b6b.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 'p2p')
-rw-r--r--p2p/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/p2p/server.go b/p2p/server.go
index 8cd2863b3..36b1721a5 100644
--- a/p2p/server.go
+++ b/p2p/server.go
@@ -33,13 +33,13 @@ import (
"github.com/dexon-foundation/dexon/crypto"
"github.com/dexon-foundation/dexon/event"
"github.com/dexon-foundation/dexon/log"
+ "github.com/dexon-foundation/dexon/p2p/discover"
"github.com/dexon-foundation/dexon/p2p/discv5"
"github.com/dexon-foundation/dexon/p2p/enode"
"github.com/dexon-foundation/dexon/p2p/enr"
"github.com/dexon-foundation/dexon/p2p/nat"
"github.com/dexon-foundation/dexon/p2p/netutil"
"github.com/dexon-foundation/dexon/rlp"
- "github.com/ethereum/go-ethereum/p2p/discover"
)
const (