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
In PR #20390, we attempted to fix an issue where geth crashes if it is stopped before being fully started. The issue is that Subscribe* methods can fail if they use event.SubscriptionScope and the scope is closed before all subscriptions are created. There are two ways to fix this issue:
Remove uses of SubscriptionScope for internal event providers such as core.BlockChain.
Ensure internal subscriptions are created in constructor functions before start.
The text was updated successfully, but these errors were encountered:
In PR #20390, we attempted to fix an issue where geth crashes if it is stopped before being fully started. The issue is that
Subscribe*
methods can fail if they useevent.SubscriptionScope
and the scope is closed before all subscriptions are created. There are two ways to fix this issue:SubscriptionScope
for internal event providers such ascore.BlockChain
.The text was updated successfully, but these errors were encountered: