-
Notifications
You must be signed in to change notification settings - Fork 85
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
Send and subscribe transaction statuses endpoint #772
Send and subscribe transaction statuses endpoint #772
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #772 +/- ##
==========================================
+ Coverage 52.92% 54.00% +1.08%
==========================================
Files 35 35
Lines 5580 5709 +129
==========================================
+ Hits 2953 3083 +130
+ Misses 2231 2199 -32
- Partials 396 427 +31
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
defer close(txStatusChan) | ||
defer close(errChan) | ||
|
||
messageIndex := uint64(0) |
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.
let's call this nextIndex
to it's clear what's stored
messageIndex := uint64(0) | |
nextIndex := uint64(0) |
Closes: #745