diff --git a/accounting/service.proto b/accounting/service.proto index f381605..afabeb1 100644 --- a/accounting/service.proto +++ b/accounting/service.proto @@ -6,7 +6,6 @@ option csharp_namespace = "NeoFS.API.Accounting"; import "service/meta.proto"; import "service/verify.proto"; import "decimal/decimal.proto"; -import "accounting/types.proto"; import "refs/types.proto"; import "github.com/gogo/protobuf/gogoproto/gogo.proto"; @@ -30,8 +29,5 @@ message BalanceRequest { message BalanceResponse { // Balance contains current account balance state - decimal.Decimal Balance = 1; - // LockAccounts contains information about locked funds. Locked funds appear - // when user pays for storage or withdraw assets. - repeated Account LockAccounts = 2; + decimal.Decimal Balance = 1; } diff --git a/proto-docs/accounting.md b/proto-docs/accounting.md index ce7156b..e63afbb 100644 --- a/proto-docs/accounting.md +++ b/proto-docs/accounting.md @@ -100,7 +100,6 @@ Balance returns current balance status of the NeoFS user | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | Balance | [decimal.Decimal](#decimal.Decimal) | | Balance contains current account balance state | -| LockAccounts | [Account](#accounting.Account) | repeated | LockAccounts contains information about locked funds. Locked funds appear when user pays for storage or withdraw assets. |