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

Use strings for topics #219

Closed
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 proto/xmtpv4/message_api/message_api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ message VectorClock {
// Data visible to the server that has been authenticated by the client.
message AuthenticatedData {
uint32 target_originator = 1;
bytes target_topic = 2;
string target_topic = 2;
VectorClock last_seen = 3;
}

Expand Down Expand Up @@ -84,7 +84,7 @@ message MisbehaviorReport {
// Either topics or originator_node_ids may be set, but not both
message EnvelopesQuery {
// Client queries
repeated bytes topics = 1;
repeated string topics = 1;
// Node queries
repeated uint32 originator_node_ids = 2;
VectorClock last_seen = 3;
Expand Down
Loading