remove event bus from evidence reactor (#6320)

This commit is contained in:
Callum Waters
2021-04-06 16:19:30 +02:00
committed by GitHub
parent cae3a75121
commit 845efdb76e

View File

@@ -55,7 +55,6 @@ type Reactor struct {
service.BaseService
evpool *Pool
eventBus *types.EventBus
evidenceCh *p2p.Channel
peerUpdates *p2p.PeerUpdates
closeCh chan struct{}
@@ -87,11 +86,6 @@ func NewReactor(
return r
}
// SetEventBus implements events.Eventable.
func (r *Reactor) SetEventBus(b *types.EventBus) {
r.eventBus = b
}
// OnStart starts separate go routines for each p2p Channel and listens for
// envelopes on each. In addition, it also listens for peer updates and handles
// messages on that p2p channel accordingly. The caller must be sure to execute