forked from TrueCloudLab/frostfs-node
cc7a723d77
Signed-off-by: Elizaveta Chichindaeva <elizaveta@nspcc.ru>
7 lines
240 B
Go
7 lines
240 B
Go
package netmap
|
|
|
|
// AnnouncedKeys is an interface of utility for working with the announced public keys of the storage nodes.
|
|
type AnnouncedKeys interface {
|
|
// Checks if the key was announced by a local node.
|
|
IsLocalKey(key []byte) bool
|
|
}
|