From 9d9c2b3ba086ddb49313e56db47f4a98eed6a48a Mon Sep 17 00:00:00 2001 From: Venkatachalam Vairavan Date: Wed, 8 Nov 2023 09:58:26 +0530 Subject: [PATCH] Changed tag value --- services/partition_update.proto | 2 +- services/token_update.proto | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/services/partition_update.proto b/services/partition_update.proto index 976f1363..62f39c6b 100644 --- a/services/partition_update.proto +++ b/services/partition_update.proto @@ -22,5 +22,5 @@ package proto; /** * If set, the new memo to be associated with the token (UTF-8 encoding max 100 bytes) */ - google.protobuf.StringValue memo = 5; + google.protobuf.StringValue memo = 3; } \ No newline at end of file diff --git a/services/token_update.proto b/services/token_update.proto index 2b800a9d..0ce2f4f1 100644 --- a/services/token_update.proto +++ b/services/token_update.proto @@ -149,13 +149,13 @@ message TokenUpdateTransactionBody { * The key which can lock, unlock, or transfer locked tokens in an account. If the Token does not * currently have a lock key, transaction will resolve to TOKEN_HAS_NO_LOCK_KEY */ - Key lock_key = 23; + Key lock_key = 16; /** * The key which can create, update, and delete partitions of this token type. If the Token does * not currently have a partition key, transaction will resolve to TOKEN_HAS_NO_PARTITION_KEY */ - Key partition_key = 24; + Key partition_key = 17; /** * The key which can move balances from the token type's supply into any partition of any user, @@ -164,5 +164,5 @@ message TokenUpdateTransactionBody { * If the Token does not currently have a partition move key, transaction will resolve to * TOKEN_HAS_NO_PARTITION_MOVE_KEY */ - Key partition_move_key = 25; + Key partition_move_key = 18; }