()
| 124 | } |
| 125 | |
| 126 | func (dc *DeployCode) ToArray() []byte { |
| 127 | sink := common.NewZeroCopySink(nil) |
| 128 | dc.Serialization(sink) |
| 129 | return sink.Bytes() |
| 130 | } |
| 131 | |
| 132 | func (dc *DeployCode) Serialization(sink *common.ZeroCopySink) { |
| 133 | sink.WriteVarBytes(dc.code) |
nothing calls this directly
no test coverage detected