diff --git a/pkg/crypto/verifiable.go b/pkg/crypto/verifiable.go index 40ff7ba1a..68670ef16 100644 --- a/pkg/crypto/verifiable.go +++ b/pkg/crypto/verifiable.go @@ -1,8 +1,11 @@ package crypto +import "github.com/nspcc-dev/neo-go/pkg/crypto/hash" + // VerifiableDecodable represents an object which can be verified and // those hashable part can be encoded/decoded. type VerifiableDecodable interface { + hash.Hashable EncodeHashableFields() ([]byte, error) DecodeHashableFields([]byte) error }