aboutsummaryrefslogtreecommitdiffstats
path: root/node
diff options
context:
space:
mode:
authorWei-Ning Huang <w@cobinhood.com>2018-10-13 13:53:42 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:49 +0800
commitfb8fb70b0c63e400a3779d36c4986e0d4520c141 (patch)
treeade151c07084a1237f30bc374bb21d1c3918bbd2 /node
parent83286d09174c739dcd94709377b3adb6ad55d80b (diff)
downloaddexon-fb8fb70b0c63e400a3779d36c4986e0d4520c141.tar
dexon-fb8fb70b0c63e400a3779d36c4986e0d4520c141.tar.gz
dexon-fb8fb70b0c63e400a3779d36c4986e0d4520c141.tar.bz2
dexon-fb8fb70b0c63e400a3779d36c4986e0d4520c141.tar.lz
dexon-fb8fb70b0c63e400a3779d36c4986e0d4520c141.tar.xz
dexon-fb8fb70b0c63e400a3779d36c4986e0d4520c141.tar.zst
dexon-fb8fb70b0c63e400a3779d36c4986e0d4520c141.zip
dex: pass p2p nodeKey to Dexon instance
Diffstat (limited to 'node')
-rw-r--r--node/node.go1
-rw-r--r--node/service.go5
2 files changed, 4 insertions, 2 deletions
diff --git a/node/node.go b/node/node.go
index 43dba3e51..ffa9fa1b0 100644
--- a/node/node.go
+++ b/node/node.go
@@ -172,6 +172,7 @@ func (n *Node) Start() error {
ctx := &ServiceContext{
config: n.config,
services: make(map[reflect.Type]Service),
+ ServerConfig: &n.serverConfig,
EventMux: n.eventmux,
AccountManager: n.accman,
}
diff --git a/node/service.go b/node/service.go
index 806d73b63..7f9683362 100644
--- a/node/service.go
+++ b/node/service.go
@@ -32,8 +32,9 @@ import (
type ServiceContext struct {
config *Config
services map[reflect.Type]Service // Index of the already constructed services
- EventMux *event.TypeMux // Event multiplexer used for decoupled notifications
- AccountManager *accounts.Manager // Account manager created by the node.
+ ServerConfig *p2p.Config
+ EventMux *event.TypeMux // Event multiplexer used for decoupled notifications
+ AccountManager *accounts.Manager // Account manager created by the node.
}
// OpenDatabase opens an existing database with the given name (or creates one