forked from TrueCloudLab/frostfs-api
[#28] storagegroup: Add linebreaks for readability
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
d349faa602
commit
2ea912a910
1 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
package storagegroup;
|
package storagegroup;
|
||||||
|
|
||||||
option go_package = "github.com/nspcc-dev/neofs-api-go/storagegroup";
|
option go_package = "github.com/nspcc-dev/neofs-api-go/storagegroup";
|
||||||
option csharp_namespace = "NeoFS.API.StorageGroup";
|
option csharp_namespace = "NeoFS.API.StorageGroup";
|
||||||
|
|
||||||
|
@ -10,6 +12,7 @@ import "refs/types.proto";
|
||||||
message StorageGroup {
|
message StorageGroup {
|
||||||
// ValidationDataSize carries the total size of the payloads of the storage group members.
|
// ValidationDataSize carries the total size of the payloads of the storage group members.
|
||||||
uint64 ValidationDataSize = 1;
|
uint64 ValidationDataSize = 1;
|
||||||
|
|
||||||
// ValidationHash carries homomorphic hash from the concatenation of the payloads of the storage group members.
|
// ValidationHash carries homomorphic hash from the concatenation of the payloads of the storage group members.
|
||||||
// The order of concatenation is the same as the order of the members in the Members field.
|
// The order of concatenation is the same as the order of the members in the Members field.
|
||||||
bytes ValidationHash = 2;
|
bytes ValidationHash = 2;
|
||||||
|
|
Loading…
Reference in a new issue