[#1431] node: Fix comment format

Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
This commit is contained in:
Alexander Chuprov 2024-10-14 18:05:55 +03:00 committed by Evgenii Stratonikov
parent f6582081a4
commit d83879d4b8
19 changed files with 30 additions and 30 deletions

View file

@ -26,7 +26,7 @@ type executorSvc struct {
// NodeState encapsulates information
// about current node state.
type NodeState interface {
// Must return current node state
// LocalNodeInfo must return current node state
// in FrostFS API v2 NodeInfo structure.
LocalNodeInfo() (*netmap.NodeInfo, error)
@ -39,7 +39,7 @@ type NodeState interface {
// NetworkInfo encapsulates source of the
// recent information about the FrostFS network.
type NetworkInfo interface {
// Must return recent network information in FrostFS API v2 NetworkInfo structure.
// Dump must return recent network information in FrostFS API v2 NetworkInfo structure.
//
// If protocol version is <=2.9, MillisecondsPerBlock and network config should be unset.
Dump(versionsdk.Version) (*netmapSDK.NetworkInfo, error)