You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
~/Work/quorum-examples/examples/7nodes % geth version
Geth
Version: 1.9.20-stable
Git Commit: eb8f6bf522629bac2eba2e39474fa169753ca712
Git Commit Date: 20210326
Quorum Version: 21.1.0
Issue
#1121 introduced ethereum/go-ethereum#20312 which switches from event.TypeMux to an event.Feed subscription for sending pending logs events to the filters package.
raft.minter::firePendingBlockEvents still sends these events on the event.TypeMux and as a result the filters package is not handling them.
Steps to reproduce the behaviour
This can be observed by subscribing to logs events on a websockets-enabled leader node using something like wscat, e.g.:
System information
Current
master
branch~/Work/quorum-examples/examples/7nodes % geth version Geth Version: 1.9.20-stable Git Commit: eb8f6bf522629bac2eba2e39474fa169753ca712 Git Commit Date: 20210326 Quorum Version: 21.1.0
Issue
#1121 introduced ethereum/go-ethereum#20312 which switches from
event.TypeMux
to anevent.Feed
subscription for sending pending logs events to thefilters
package.raft.minter::firePendingBlockEvents
still sends these events on theevent.TypeMux
and as a result thefilters
package is not handling them.Steps to reproduce the behaviour
This can be observed by subscribing to
logs
events on a websockets-enabled leader node using something likewscat
, e.g.:When sending transactions that emit logs, no events are returned by the subscription.
The text was updated successfully, but these errors were encountered: