remove unused variable

This commit is contained in:
amalraj.manigmail.com 2019-07-09 11:49:44 +08:00
parent d84c73e39d
commit 38dcf7e98a
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ func (n *Node) Start() error {
// Otherwise copy and specialize the P2P configuration
services := make(map[reflect.Type]Service)
for ct, constructor := range n.serviceFuncs {
for _, constructor := range n.serviceFuncs {
// Create a new context for the particular service
ctx := &ServiceContext{
config: n.config,