From 00e5e66880dbc54e3bb39514841bd21808975da6 Mon Sep 17 00:00:00 2001 From: ibankov Date: Fri, 28 Jun 2024 11:18:30 +0300 Subject: [PATCH] fix merging errors Signed-off-by: ibankov --- services/basic_types.proto | 7 +----- services/response_code.proto | 47 ++++++++++++------------------------ 2 files changed, 17 insertions(+), 37 deletions(-) diff --git a/services/basic_types.proto b/services/basic_types.proto index dced9027..ad992098 100644 --- a/services/basic_types.proto +++ b/services/basic_types.proto @@ -1212,15 +1212,10 @@ enum HederaFunctionality { */ TokenReject = 92; - /** - * Transfer one or more token balances held by the requesting account to the treasury for each token type. - */ - TokenReject = 93; - /** * Airdrop one or more tokens to one or more accounts. */ - TokenAirdrop = 94; + TokenAirdrop = 93; } /** diff --git a/services/response_code.proto b/services/response_code.proto index 26be8c3a..77a05c24 100644 --- a/services/response_code.proto +++ b/services/response_code.proto @@ -1509,39 +1509,24 @@ enum ResponseCodeEnum { */ TOKEN_REFERENCE_LIST_SIZE_LIMIT_EXCEEDED = 355; - /** - * The transaction attempted to use duplicate `TokenReference`.
- * This affects `TokenReject` attempting to reject same token reference more than once. - */ - TOKEN_REFERENCE_REPEATED = 353; - - /** - * The account id specified as the owner in `TokenReject` is invalid or does not exist. - */ - INVALID_OWNER_ID = 354; - /** - * The transaction attempted to use more than the allowed number of `TokenReference`. - */ - TOKEN_REFERENCE_LIST_SIZE_LIMIT_EXCEEDED = 355; - - /** - * The number of service endpoints exceeds the limit - */ - SERVICE_ENDPOINTS_EXCEEDED_LIMIT = 356; + /** + * The number of service endpoints exceeds the limit + */ + SERVICE_ENDPOINTS_EXCEEDED_LIMIT = 356; - /* - * The IPv4 address is invalid - */ - INVALID_IPV4_ADDRESS = 357; + /* + * The IPv4 address is invalid + */ + INVALID_IPV4_ADDRESS = 357; - /** - * The transaction attempted to use empty `TokenReference` list. - */ - EMPTY_TOKEN_REFERENCE_LIST = 358; + /** + * The transaction attempted to use empty `TokenReference` list. + */ + EMPTY_TOKEN_REFERENCE_LIST = 358; - /* - * The node account is not allowed to be updated - */ - UPDATE_NODE_ACCOUNT_NOT_ALLOWED = 359; + /* + * The node account is not allowed to be updated + */ + UPDATE_NODE_ACCOUNT_NOT_ALLOWED = 359; }