-
Notifications
You must be signed in to change notification settings - Fork 75
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
feat: added support for eth_getTransactionReceipt() to the WS server (#2274) #2297
feat: added support for eth_getTransactionReceipt() to the WS server (#2274) #2297
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2297 +/- ##
=======================================
Coverage 75.15% 75.15%
=======================================
Files 13 13
Lines 644 644
Branches 118 118
=======================================
Hits 484 484
Misses 115 115
Partials 45 45 ☔ View full report in Codecov by Sentry. |
77265d4
to
4d48758
Compare
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
4d48758
to
fbe4c78
Compare
Signed-off-by: Logan Nguyen <[email protected]>
afterEach(async () => { | ||
if (wsProvider) { | ||
await wsProvider.destroy(); | ||
await new Promise((resolve) => setTimeout(resolve, 1000)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What are we waiting for here? Can this be replaced by some kind of check such as the wsProvider being destroyed or undefined?
afterEach(async () => { | ||
if (wsProvider) { | ||
await wsProvider.destroy(); | ||
await new Promise((resolve) => setTimeout(resolve, 1000)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same question as above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LG, just one question.
Signed-off-by: Logan Nguyen <[email protected]> Revert "fix: removed timer after connecting and disconnecting wsProvider" This reverts commit 8cc42b8. a Signed-off-by: Logan Nguyen <[email protected]>
8cc42b8
to
edd503b
Compare
Quality Gate failedFailed conditions |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LG.
Description:
Related issue(s):
Fixes #2274
Notes for reviewer:
Checklist