neo-go/pkg/smartcontract/context/item.go

25 lines
707 B
Go
Raw Normal View History

2020-03-04 09:40:01 +00:00
package context
import (
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
)
// Item represents a transaction context item.
type Item struct {
Script []byte `json:"script"`
2020-03-04 09:40:01 +00:00
Parameters []smartcontract.Parameter `json:"parameters"`
Signatures map[string][]byte `json:"signatures"`
2020-03-04 09:40:01 +00:00
}
// GetSignature returns a signature for the pub if present.
2020-03-04 09:40:01 +00:00
func (it *Item) GetSignature(pub *keys.PublicKey) []byte {
return it.Signatures[pub.StringCompressed()]
2020-03-04 09:40:01 +00:00
}
// AddSignature adds a signature for the pub.
2020-03-04 09:40:01 +00:00
func (it *Item) AddSignature(pub *keys.PublicKey, sig []byte) {
pubHex := pub.StringCompressed()
2020-03-04 09:40:01 +00:00
it.Signatures[pubHex] = sig
}