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] Update message index docs #1458

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
7 changes: 3 additions & 4 deletions protobuf/flow/executiondata/executiondata.proto
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,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 "0".
// The message index of the response message. Used by the client to ensure they received all messages. Starts from "1".
uint64 message_index = 5;
}

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

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

message Result {
// Unique identifier for the account being streamed
Expand Down
Loading