From c862fac55f22d56e9fd8b5d48bf60ea8618c7733 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 30 Apr 2025 14:39:28 -0500 Subject: [PATCH] minor --- example/signal.proto | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/example/signal.proto b/example/signal.proto index 7d3da53..7d3e89b 100644 --- a/example/signal.proto +++ b/example/signal.proto @@ -94,10 +94,8 @@ message AccountData { } message IAPSubscriberData { oneof iapSubscriptionId { - // Identifies an Android Play Store IAP subscription. - string purchaseToken = 2; - // Identifies an iOS App Store IAP subscription. - uint64 originalTransactionId = 3; + string purchaseToken = 2; // Identifies an Android Play Store IAP subscription. + uint64 originalTransactionId = 3; // Identifies an iOS App Store IAP subscription. } bytes subscriberId = 1;