mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 13:38:35 +00:00
8 lines
179 B
Go
8 lines
179 B
Go
package services
|
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
|
|
|
// Notary is a Notary module interface.
|
|
type Notary interface {
|
|
UpdateNotaryNodes(pubs keys.PublicKeys)
|
|
}
|