From c7d5a4005621f427526e788d3d817169cc517019 Mon Sep 17 00:00:00 2001 From: Sanaz Taheri Boshrooyeh <35961250+staheri14@users.noreply.github.com> Date: Wed, 21 Apr 2021 10:59:18 -0700 Subject: [PATCH] Marks the first field of `HistoryQuery` and `HistoryResponse` as reserved (#352) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * marks the first field of request and response as reserved * Update content/docs/rfcs/13/README.md Co-authored-by: Oskar Thorén * Update content/docs/rfcs/13/README.md Co-authored-by: Oskar Thorén * Update content/docs/rfcs/13/README.md Co-authored-by: Franck Royer Co-authored-by: Oskar Thorén Co-authored-by: Franck Royer --- content/docs/rfcs/13/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/docs/rfcs/13/README.md b/content/docs/rfcs/13/README.md index 2791a172..b898acd2 100644 --- a/content/docs/rfcs/13/README.md +++ b/content/docs/rfcs/13/README.md @@ -70,13 +70,15 @@ message ContentFilter { } message HistoryQuery { + // the first field is reserved for future use repeated ContentFilter contentFilters = 2; PagingInfo pagingInfo = 3; } message HistoryResponse { + // the first field is reserved for future use repeated WakuMessage messages = 2; - PagingInfo pagingInfo = 3; // used for pagination + PagingInfo pagingInfo = 3; } message HistoryRPC {