(sink *common.ZeroCopySink, buf string)
| 202 | } |
| 203 | |
| 204 | func EncodeString(sink *common.ZeroCopySink, buf string) { |
| 205 | sink.WriteByte(StringType) |
| 206 | sink.WriteUint32(uint32(len(buf))) |
| 207 | sink.WriteBytes([]byte(buf)) |
| 208 | } |
| 209 | |
| 210 | func EncodeAddress(sink *common.ZeroCopySink, addr common.Address) { |
| 211 | sink.WriteByte(AddressType) |
no test coverage detected