From 2ea912a9104736411bb6053c203bd9dc3a929437 Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Wed, 5 Aug 2020 11:49:51 +0300 Subject: [PATCH] [#28] storagegroup: Add linebreaks for readability Signed-off-by: Leonard Lyubich --- storagegroup/types.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/storagegroup/types.proto b/storagegroup/types.proto index af93a5f..894db2e 100644 --- a/storagegroup/types.proto +++ b/storagegroup/types.proto @@ -1,5 +1,7 @@ syntax = "proto3"; + package storagegroup; + option go_package = "github.com/nspcc-dev/neofs-api-go/storagegroup"; option csharp_namespace = "NeoFS.API.StorageGroup"; @@ -10,6 +12,7 @@ import "refs/types.proto"; message StorageGroup { // ValidationDataSize carries the total size of the payloads of the storage group members. uint64 ValidationDataSize = 1; + // 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. bytes ValidationHash = 2;