mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 20:56:42 +00:00
panic if self.node is nil when set on bzz (TEMPORARY)
This commit is contained in:
parent
936561e90e
commit
e2887da4c4
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue