aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorWei-Ning Huang <w@cobinhood.com>2018-09-21 15:06:38 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 10:47:31 +0800
commit10d91a9940fa5671af63aa03f3aa0bfacad61b41 (patch)
tree40185ae0aa6b9253a45a9b6a0bc5dff3e7630371 /cmd
parenta70222ced6e5443470ba5dad973ac75e51a3e19d (diff)
downloaddexon-10d91a9940fa5671af63aa03f3aa0bfacad61b41.tar
dexon-10d91a9940fa5671af63aa03f3aa0bfacad61b41.tar.gz
dexon-10d91a9940fa5671af63aa03f3aa0bfacad61b41.tar.bz2
dexon-10d91a9940fa5671af63aa03f3aa0bfacad61b41.tar.lz
dexon-10d91a9940fa5671af63aa03f3aa0bfacad61b41.tar.xz
dexon-10d91a9940fa5671af63aa03f3aa0bfacad61b41.tar.zst
dexon-10d91a9940fa5671af63aa03f3aa0bfacad61b41.zip
dex: make geth buildable and update interface skeleton
Diffstat (limited to 'cmd')
-rw-r--r--cmd/utils/flags.go11
1 files changed, 6 insertions, 5 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index 052660ba1..b75a67ca5 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -40,6 +40,7 @@ import (
"github.com/ethereum/go-ethereum/core/vm"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/dashboard"
+ "github.com/ethereum/go-ethereum/dex"
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/eth/downloader"
"github.com/ethereum/go-ethereum/eth/gasprice"
@@ -1330,11 +1331,11 @@ func RegisterEthService(stack *node.Node, cfg *eth.Config) {
})
} else {
err = stack.Register(func(ctx *node.ServiceContext) (node.Service, error) {
- fullNode, err := eth.New(ctx, cfg)
- if fullNode != nil && cfg.LightServ > 0 {
- ls, _ := les.NewLesServer(fullNode, cfg)
- fullNode.AddLesServer(ls)
- }
+ fullNode, err := dex.New(ctx, cfg)
+ //if fullNode != nil && cfg.LightServ > 0 {
+ // ls, _ := les.NewLesServer(fullNode, cfg)
+ // fullNode.AddLesServer(ls)
+ //}
return fullNode, err
})
}