From 5fe4c2734e0c5056dbec25ce37f960ae6f17f9e7 Mon Sep 17 00:00:00 2001 From: Stanislav Bogatyrev Date: Fri, 7 Aug 2020 09:48:09 +0300 Subject: [PATCH] [#33] Remove unused headers Remove MetaHeader and VerifyHeader from balance request as these fields are also removed from all container related requests. Signed-off-by: Stanislav Bogatyrev --- accounting/service.proto | 8 -------- proto-docs/accounting.md | 2 -- 2 files changed, 10 deletions(-) diff --git a/accounting/service.proto b/accounting/service.proto index f08a312..2dbfbc0 100644 --- a/accounting/service.proto +++ b/accounting/service.proto @@ -25,14 +25,6 @@ service Accounting { message BalanceRequest { // Carries user identifier in NeoFS system for which the balance is requested. refs.OwnerID OwnerID = 1; - - // Carries request meta information. Header data is used only to regulate message - // transport and does not affect request execution. - service.RequestMetaHeader MetaHeader = 98; - - // Carries request verification information. This header is used to authenticate - // the nodes of the message route and check the correctness of transmission. - service.RequestVerificationHeader VerifyHeader = 99; } // Decimal represents the decimal numbers. diff --git a/proto-docs/accounting.md b/proto-docs/accounting.md index 14d9c7c..ffab500 100644 --- a/proto-docs/accounting.md +++ b/proto-docs/accounting.md @@ -60,8 +60,6 @@ to the requirements from the system specification. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | OwnerID | [refs.OwnerID](#refs.OwnerID) | | Carries user identifier in NeoFS system for which the balance is requested. | -| MetaHeader | [service.RequestMetaHeader](#service.RequestMetaHeader) | | Carries request meta information. Header data is used only to regulate message transport and does not affect request execution. | -| VerifyHeader | [service.RequestVerificationHeader](#service.RequestVerificationHeader) | | Carries request verification information. This header is used to authenticate the nodes of the message route and check the correctness of transmission. |