chore: update the event manager modifier on context (#14418)

Co-authored-by: Cal Bera <calbera@berachain.com>
This commit is contained in:
Marko
2022-12-26 14:37:55 +00:00
committed by GitHub
co-authored by Cal Bera
parent 67c96bb922
commit 0e55453878
+1 -1
View File
@@ -243,7 +243,7 @@ func (c Context) WithConsensusParams(params *tmproto.ConsensusParams) Context {
}
// WithEventManager returns a Context with an updated event manager
func (c Context) WithEventManager(em *EventManager) Context {
func (c Context) WithEventManager(em EventManagerI) Context {
c.eventManager = em
return c
}