Skip to content
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] Change SendAndSubscribe endpoint's MessageIndex to start at 0 #1520

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions protobuf/flow/executiondata/executiondata.proto
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ message SubscribeEventsResponse {
// Timestamp from the block containing the events.
google.protobuf.Timestamp block_timestamp = 4;

// The message index of the response message. Used by the client to ensure they received all messages. Starts from "1".
// The message index of the response message. Used by the client to ensure they received all messages. Starts from "0".
uint64 message_index = 5;
}

Expand Down Expand Up @@ -618,7 +618,7 @@ message SubscribeAccountStatusesResponse {
// Block height of the block containing the events.
uint64 block_height = 2;

// The message index of the response message. Used by the client to ensure they received all messages. Starts from "1".
// The message index of the response message. Used by the client to ensure they received all messages. Starts from "0".
uint64 message_index = 3;

message Result {
Expand Down
Loading