| 64 | |
| 65 | template <typename Stream> |
| 66 | void Serialize(Stream& s) const |
| 67 | { |
| 68 | ser_writedata8(s, DB_BLOCK_HEIGHT); |
| 69 | ser_writedata32be(s, height); |
| 70 | } |
| 71 | |
| 72 | template <typename Stream> |
| 73 | void Unserialize(Stream& s) |
nothing calls this directly
no test coverage detected