frostfs-node/pkg/core/netmap/keys.go
Alexander Chuprov d83879d4b8 [#1431] node: Fix comment format
Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
2024-10-15 08:53:59 +00: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
}