From a0165affeaa6a456d9c52462d8138415a8a58a76 Mon Sep 17 00:00:00 2001 From: Andrii Date: Mon, 28 Oct 2024 17:03:53 +0200 Subject: [PATCH] Fixed go doc for endpoints with msg index to start at 0 --- protobuf/flow/executiondata/executiondata.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protobuf/flow/executiondata/executiondata.proto b/protobuf/flow/executiondata/executiondata.proto index 67b2fef79..69d541155 100644 --- a/protobuf/flow/executiondata/executiondata.proto +++ b/protobuf/flow/executiondata/executiondata.proto @@ -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; } @@ -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 {