ToHexString returns hex string representation of Address
()
| 40 | |
| 41 | // ToHexString returns hex string representation of Address |
| 42 | func (self *Address) ToHexString() string { |
| 43 | return fmt.Sprintf("%x", ToArrayReverse(self[:])) |
| 44 | } |
| 45 | |
| 46 | // Serialize serialize Address into io.Writer |
| 47 | func (self *Address) Serialization(sink *ZeroCopySink) { |
nothing calls this directly
no test coverage detected