Skip to content

Commit

Permalink
fix node constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
mihis committed Feb 1, 2019
1 parent da8bf37 commit e0cbeda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,9 @@ func NewNodeContainer(

n.c = c
n.fs = newNodeFeeds(n)
n.ic = make(map[cipher.PubKey]*Conn)
n.pc = make(map[string]*Conn)
n.ac = make(map[string]*Conn)
n.ic = make(map[cipher.PubKey]*Conn)
n.ss = make(map[cipher.PubKey]*Swarm)

n.config = conf
Expand Down

0 comments on commit e0cbeda

Please sign in to comment.