2019-02-25 22:44:14 +00:00
|
|
|
package transaction
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/wire/payload/transaction/types"
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/wire/payload/transaction/version"
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/wire/util"
|
|
|
|
)
|
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
//Contract represents a contract transaction on the neo network
|
2019-02-25 22:44:14 +00:00
|
|
|
type Contract struct {
|
|
|
|
*Base
|
|
|
|
}
|
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
//NewContract returns a contract transaction
|
2019-02-25 22:44:14 +00:00
|
|
|
func NewContract(ver version.TX) *Contract {
|
|
|
|
basicTrans := createBaseTransaction(types.Contract, ver)
|
|
|
|
|
|
|
|
contract := &Contract{
|
|
|
|
basicTrans,
|
|
|
|
}
|
|
|
|
contract.encodeExclusive = contract.encodeExcl
|
|
|
|
contract.decodeExclusive = contract.decodeExcl
|
|
|
|
return contract
|
|
|
|
}
|
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
func (c *Contract) encodeExcl(bw *util.BinWriter) {}
|
2019-02-25 22:44:14 +00:00
|
|
|
|
2019-03-17 18:26:35 +00:00
|
|
|
func (c *Contract) decodeExcl(br *util.BinReader) {}
|