Skip to content

Commit

Permalink
revert just use strings
Browse files Browse the repository at this point in the history
  • Loading branch information
insipx committed Dec 6, 2023
1 parent 007ea25 commit 3f372cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions proto/mls/database/intents.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ message SendMessageData {
message AddMembersData {
// V1 of AddMembersPublishData
message V1 {
repeated bytes account_addresses = 1;
repeated string account_addresses = 1;
}

oneof version {
Expand All @@ -34,7 +34,7 @@ message AddMembersData {
message RemoveMembersData {
// V1 of RemoveMembersPublishData
message V1 {
repeated bytes account_addresses = 1;
repeated string account_addresses = 1;
}

oneof version {
Expand Down
2 changes: 1 addition & 1 deletion proto/v3/message_contents/association.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ enum AssociationTextVersion {
message Eip191Association {
AssociationTextVersion association_text_version = 1;
RecoverableEcdsaSignature signature = 2;
bytes wallet_address = 3;
string wallet_address = 3;
}

// RecoverableEcdsaSignature
Expand Down

0 comments on commit 3f372cf

Please sign in to comment.