(sink *common.ZeroCopySink, hash common.Uint256)
| 222 | } |
| 223 | |
| 224 | func EncodeH256(sink *common.ZeroCopySink, hash common.Uint256) { |
| 225 | sink.WriteByte(H256Type) |
| 226 | sink.WriteBytes(hash[:]) |
| 227 | } |
| 228 | |
| 229 | func EncodeInt128(sink *common.ZeroCopySink, val common.I128) { |
| 230 | sink.WriteByte(IntType) |
no test coverage detected