frostfs-node/pkg/core/netmap/keys.go
Alexander Chuprov c9afdbe089
[#1431] node: Fix comment format
Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
2024-10-14 18:05:55 +03:00

7 lines
251 B
Go

package netmap
// AnnouncedKeys is an interface of utility for working with the announced public keys of the storage nodes.
type AnnouncedKeys interface {
// IsLocalKey checks if the key was announced by a local node.
IsLocalKey(key []byte) bool
}