RawTx is a raw transaction, before processing through txvm.
| 283 | |
| 284 | // RawTx is a raw transaction, before processing through txvm. |
| 285 | type RawTx struct { |
| 286 | Version int64 `protobuf:"varint,1,opt,name=version" json:"version,omitempty"` |
| 287 | Runlimit int64 `protobuf:"varint,2,opt,name=runlimit" json:"runlimit,omitempty"` |
| 288 | Program []byte `protobuf:"bytes,3,opt,name=program,proto3" json:"program,omitempty"` |
| 289 | } |
| 290 | |
| 291 | func (m *RawTx) Reset() { *m = RawTx{} } |
| 292 | func (m *RawTx) String() string { return proto.CompactTextString(m) } |
nothing calls this directly
no outgoing calls
no test coverage detected