panic if self.node is nil when set on bzz (TEMPORARY)

This commit is contained in:
zelig 2015-05-13 21:37:00 +02:00
parent 936561e90e
commit e2887da4c4

View file

@ -472,7 +472,7 @@ func (s *Ethereum) Start() error {
if selfNode == nil { if selfNode == nil {
panic("self is nil") panic("self is nil")
} }
s.netStore.Start() s.netStore.Start(selfNode)
go bzz.StartHttpServer(s.DPA) go bzz.StartHttpServer(s.DPA)
} }