diff --git a/netmap/types.proto b/netmap/types.proto index 7e1dd42..ae424c5 100644 --- a/netmap/types.proto +++ b/netmap/types.proto @@ -92,11 +92,11 @@ message PlacementPolicy { // NeoFS node description message NodeInfo { - // Ways to connect to a node - string address = 1; - // Public key of the NeoFS node in a binary format. - bytes public_key = 2; + bytes public_key = 1; + + // Ways to connect to a node + string address = 2; // Attributes of the NeoFS node. message Attribute { diff --git a/proto-docs/netmap.md b/proto-docs/netmap.md index d375b12..152e507 100644 --- a/proto-docs/netmap.md +++ b/proto-docs/netmap.md @@ -37,8 +37,8 @@ NeoFS node description | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| address | [string](#string) | | Ways to connect to a node | | public_key | [bytes](#bytes) | | Public key of the NeoFS node in a binary format. | +| address | [string](#string) | | Ways to connect to a node | | attributes | [NodeInfo.Attribute](#neo.fs.v2.netmap.NodeInfo.Attribute) | repeated | Carries list of the NeoFS node attributes in a string key-value format. | | state | [NodeInfo.State](#neo.fs.v2.netmap.NodeInfo.State) | | Carries state of the NeoFS node. |