| 117 | |
| 118 | template<typename Stream> |
| 119 | void Serialize(Stream& s) const |
| 120 | { |
| 121 | int nVersion = s.GetVersion(); |
| 122 | if (!(s.GetType() & SER_GETHASH)) { |
| 123 | s << nVersion; |
| 124 | } |
| 125 | s << nTime << vchPubKey << fInternal << m_pre_split; |
| 126 | } |
| 127 | |
| 128 | template<typename Stream> |
| 129 | void Unserialize(Stream& s) |
nothing calls this directly
no test coverage detected