From dcd03063dbca92fb06562676be2b7a169dda7141 Mon Sep 17 00:00:00 2001 From: Anton Evangelatov Date: Mon, 12 Feb 2018 16:53:08 +0100 Subject: [PATCH] p2p/sim: reenable EnableMsgEvents so that TestMsgFilterPassMultiple passes --- p2p/simulations/adapters/inproc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/simulations/adapters/inproc.go b/p2p/simulations/adapters/inproc.go index 6ecacd87a7..0d22b4f56f 100644 --- a/p2p/simulations/adapters/inproc.go +++ b/p2p/simulations/adapters/inproc.go @@ -112,7 +112,7 @@ func (s *SimAdapter) NewNode(config *NodeConfig) (Node, error) { MaxPeers: math.MaxInt32, NoDiscovery: true, Dialer: s, - EnableMsgEvents: false, + EnableMsgEvents: true, }, NoUSB: true, Logger: log.New("node.id", id.String()),