neotest: adjust Signer documentation

Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru>
This commit is contained in:
Anna Shaleva 2023-12-01 09:25:41 +03:00
parent 34be76efb7
commit daa2b3b920

View file

@ -19,9 +19,9 @@ import (
// Signer is a generic interface which can be either a simple- or multi-signature signer. // Signer is a generic interface which can be either a simple- or multi-signature signer.
type Signer interface { type Signer interface {
// ScriptHash returns a signer script hash.
Script() []byte
// Script returns a signer verification script. // Script returns a signer verification script.
Script() []byte
// ScriptHash returns a signer script hash.
ScriptHash() util.Uint160 ScriptHash() util.Uint160
// SignHashable returns an invocation script for signing an item. // SignHashable returns an invocation script for signing an item.
SignHashable(uint32, hash.Hashable) []byte SignHashable(uint32, hash.Hashable) []byte