Replies: 1 comment 3 replies
-
Hi @claasahl, I just tried to reproduce. I am able to see
Do you know any approx time it takes to reproduce on your end? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi 👋
I have a small NodeJS application (similar to the example below) that is subscribing to
Sync
events from Uniswap-like pairs on BSC. At a first glance, things work just fine andSync
events are received from all subscribed addresses. At some point the application starts to skipSync
events for no apparent reason (i.e. there arn't any obvious network issues or similar).When running the above example, I would expect to see matching
>>> on
messages for every event in>>> poll
messages. In practice, this is not the case. Every now and then>>> on
messages are skipped.Is it expected behavior for
contract.on("Sync", ...);
to occassionally skipSync
events? If not, am I missing something terribly obvious? Do I need to somehow handle removedSync
events?That said, I am fairly certain that I can get things working with one of these approaches:
Beta Was this translation helpful? Give feedback.
All reactions