Marks the first field of HistoryQuery and HistoryResponse as reserved (#352)

* marks the first field of request and response as reserved

* Update content/docs/rfcs/13/README.md

Co-authored-by: Oskar Thorén <ot@oskarthoren.com>

* Update content/docs/rfcs/13/README.md

Co-authored-by: Oskar Thorén <ot@oskarthoren.com>

* Update content/docs/rfcs/13/README.md

Co-authored-by: Franck Royer <franck@status.im>

Co-authored-by: Oskar Thorén <ot@oskarthoren.com>
Co-authored-by: Franck Royer <franck@status.im>
This commit is contained in:
Sanaz Taheri Boshrooyeh 2021-04-21 10:59:18 -07:00 committed by GitHub
parent bc7ab0c416
commit c7d5a40056
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {