-
Notifications
You must be signed in to change notification settings - Fork 179
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
[Access] Add implementation for events data providers and account statuses data providers #6766
base: master
Are you sure you want to change the base?
[Access] Add implementation for events data providers and account statuses data providers #6766
Conversation
…:The-K-R-O-K/flow-go into AndriiDiachuk/6588-events-data-provider
…:The-K-R-O-K/flow-go into AndriiDiachuk/6588-events-data-provider
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #6766 +/- ##
==========================================
+ Coverage 40.95% 41.03% +0.08%
==========================================
Files 2093 2096 +3
Lines 184432 184727 +295
==========================================
+ Hits 75528 75809 +281
+ Misses 102582 102562 -20
- Partials 6322 6356 +34
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
engine/access/rest/websockets/data_providers/events_provider.go
Outdated
Show resolved
Hide resolved
engine/access/rest/websockets/data_providers/events_provider.go
Outdated
Show resolved
Hide resolved
engine/access/rest/websockets/data_providers/events_provider.go
Outdated
Show resolved
Hide resolved
engine/access/rest/websockets/data_providers/events_provider_test.go
Outdated
Show resolved
Hide resolved
…:The-K-R-O-K/flow-go into AndriiDiachuk/6588-events-data-provider
…:The-K-R-O-K/flow-go into AndriiDiachuk/6588-events-data-provider
…The-K-R-O-K/flow-go into AndriiDiachuk/6587-accounts-data-provider
…achuk/6588-events-data-provider
…The-K-R-O-K/flow-go into AndriiDiachuk/6588-events-data-provider
…The-K-R-O-K/flow-go into AndriiDiachuk/6587-accounts-data-provider
…m:The-K-R-O-K/flow-go into AndriiDiachuk/6588-events-data-provider
import "github.com/onflow/flow-go/model/flow" | ||
|
||
// AccountStatusesResponse is the response message for 'events' topic. | ||
type AccountStatusesResponse struct { |
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.
Both AccountStatusesResponse
and EventResponse
models should be aligned with the implementation of the issue #6775
engine/access/rest/websockets/data_providers/account_statuses_provider.go
Show resolved
Hide resolved
engine/access/rest/websockets/data_providers/account_statuses_provider.go
Outdated
Show resolved
Hide resolved
engine/access/rest/websockets/data_providers/account_statuses_provider.go
Outdated
Show resolved
Hide resolved
engine/access/rest/websockets/data_providers/account_statuses_provider.go
Outdated
Show resolved
Hide resolved
engine/access/rest/websockets/data_providers/account_statuses_provider_test.go
Outdated
Show resolved
Hide resolved
engine/access/rest/websockets/data_providers/blocks_provider_test.go
Outdated
Show resolved
Hide resolved
…achuk/6588-events-data-provider
Closes: #6588, #6587
In this PR
EventsDataProvider
and "AccountStatusesDataProvider" were implemented.