crypto: declare Verifiable and ScriptContainer interfaces

This commit is contained in:
Evgenii Stratonikov 2020-04-13 13:33:48 +03:00
parent 266138c00c
commit 2879f89337

6
pkg/crypto/verifiable.go Normal file
View file

@ -0,0 +1,6 @@
package crypto
// Verifiable represents an object which can be verified.
type Verifiable interface {
GetSignedPart() []byte
}