mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-04 19:19:44 +00:00
f8979fe7af
* golint and minor changes to make code readable
37 lines
810 B
Go
37 lines
810 B
Go
package transaction
|
|
|
|
import (
|
|
"github.com/CityOfZion/neo-go/pkg/wire/util"
|
|
)
|
|
|
|
//Witness represents a Witness object in a neo transaction
|
|
type Witness struct {
|
|
InvocationScript []byte
|
|
VerificationScript []byte
|
|
}
|
|
|
|
// Encode encodes a Witness into a binary writer
|
|
func (s *Witness) Encode(bw *util.BinWriter) error {
|
|
|
|
bw.VarUint(uint64(len(s.InvocationScript)))
|
|
bw.Write(s.InvocationScript)
|
|
|
|
bw.VarUint(uint64(len(s.VerificationScript)))
|
|
bw.Write(s.VerificationScript)
|
|
|
|
return bw.Err
|
|
}
|
|
|
|
// Decode decodes a binary reader into a Witness object
|
|
func (s *Witness) Decode(br *util.BinReader) error {
|
|
|
|
lenb := br.VarUint()
|
|
s.InvocationScript = make([]byte, lenb)
|
|
br.Read(s.InvocationScript)
|
|
|
|
lenb = br.VarUint()
|
|
s.VerificationScript = make([]byte, lenb)
|
|
br.Read(s.VerificationScript)
|
|
|
|
return br.Err
|
|
}
|