-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
waitForTransactionReceipt() leaks polling handles after timeout when receipt is not found #3515
Comments
Hello @songge-cb. Please provide a minimal reproduction using StackBlitz, TypeScript Playground (for type issues), or a separate minimal GitHub repository. Minimal reproductions are required as they save us a lot of time reproducing your config/environment and issue, and allow us to help you faster. Once a minimal reproduction is added, a team member will confirm it works, then re-open the issue. |
Hi team, I’ve created a minimal reproduction of the issue using StackBlitz as requested. Here are the details: Minimal Reproduction on StackBlitz
This reproduces the issue I described: Thanks, |
oh man, I've been experiencing leaks for some time now, and I was just getting frustrated not being able to find where it is coming from, its is big project, and the experienced leak is very minimal, this looks like it might be it tbh. looking forward to this. |
@rouzwelt I called
|
Check existing issues
Viem Version
2.24.1
Current Behavior
When calling waitForTransactionReceipt() with an invalid or never-mined transaction hash, and the timeout is reached before a receipt is found:
Expected Behavior
When timeout is reached and the promise is rejected:
Steps To Reproduce
Example
Link to Minimal Reproducible Example
No response
Anything else?
We're using Viem inside long-running Temporal workflows. A retryable activity using waitForTransactionReceipt() can leave behind a polling process if the tx hash is invalid. This accumulates over time, potentially exhausting resources.
To avoid this, we replaced Viem’s function with our own polling logic using getTransactionReceipt() — but we’d love to use the official method safely if this issue is addressed.
The text was updated successfully, but these errors were encountered: