forked from TrueCloudLab/frostfs-node
7 lines
251 B
Go
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
|
|
}
|