neoneo-go/pkg/core/blockchainer/services/notary.go

9 lines
179 B
Go
Raw Normal View History

2020-12-30 08:01:13 +00:00
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)
}