neo-go/pkg/core/blockchainer/services/notary.go
2021-02-02 22:01:20 +03:00

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)
}