forked from TrueCloudLab/neoneo-go
956fd08adb
Add a method that makes a deep copy of all fields and resets size/hash caches. Close #3288 Signed-off-by: Ekaterina Pavlova <ekt@morphbits.io>
50 lines
1.4 KiB
Go
50 lines
1.4 KiB
Go
package transaction
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/hash"
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
)
|
|
|
|
const (
|
|
// MaxInvocationScript is the maximum length of allowed invocation
|
|
// script. It should fit 11/21 multisignature for the committee.
|
|
MaxInvocationScript = 1024
|
|
|
|
// MaxVerificationScript is the maximum allowed length of verification
|
|
// script. It should be appropriate for 11/21 multisignature committee.
|
|
MaxVerificationScript = 1024
|
|
)
|
|
|
|
// Witness contains 2 scripts.
|
|
type Witness struct {
|
|
InvocationScript []byte `json:"invocation"`
|
|
VerificationScript []byte `json:"verification"`
|
|
}
|
|
|
|
// DecodeBinary implements the Serializable interface.
|
|
func (w *Witness) DecodeBinary(br *io.BinReader) {
|
|
w.InvocationScript = br.ReadVarBytes(MaxInvocationScript)
|
|
w.VerificationScript = br.ReadVarBytes(MaxVerificationScript)
|
|
}
|
|
|
|
// EncodeBinary implements the Serializable interface.
|
|
func (w *Witness) EncodeBinary(bw *io.BinWriter) {
|
|
bw.WriteVarBytes(w.InvocationScript)
|
|
bw.WriteVarBytes(w.VerificationScript)
|
|
}
|
|
|
|
// ScriptHash returns the hash of the VerificationScript.
|
|
func (w Witness) ScriptHash() util.Uint160 {
|
|
return hash.Hash160(w.VerificationScript)
|
|
}
|
|
|
|
// Copy creates a deep copy of the Witness.
|
|
func (w Witness) Copy() Witness {
|
|
return Witness{
|
|
InvocationScript: bytes.Clone(w.InvocationScript),
|
|
VerificationScript: bytes.Clone(w.VerificationScript),
|
|
}
|
|
}
|