From fb8fb70b0c63e400a3779d36c4986e0d4520c141 Mon Sep 17 00:00:00 2001 From: Wei-Ning Huang Date: Sat, 13 Oct 2018 13:53:42 +0800 Subject: dex: pass p2p nodeKey to Dexon instance --- node/service.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'node/service.go') 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 -- cgit