| 87 | } |
| 88 | |
| 89 | type contract struct { |
| 90 | typecode byte |
| 91 | seed []byte |
| 92 | program []byte |
| 93 | stack stack |
| 94 | } |
| 95 | |
| 96 | func (x *contract) isPortable() bool { return x.typecode == WrappedContractCode } |
| 97 | func (x *contract) isDroppable() bool { return false } |
nothing calls this directly
no outgoing calls
no test coverage detected