| 57 | |
| 58 | template<typename Stream> |
| 59 | void Serialize(Stream& s) const |
| 60 | { |
| 61 | ser_writedata8(s, DB_BLOCK_HEIGHT); |
| 62 | ser_writedata32be(s, height); |
| 63 | } |
| 64 | |
| 65 | template<typename Stream> |
| 66 | void Unserialize(Stream& s) |
nothing calls this directly
no test coverage detected