(cls, f, protover=PROTO_VERSION)
| 295 | |
| 296 | @classmethod |
| 297 | def msg_deser(cls, f, protover=PROTO_VERSION): |
| 298 | c = cls() |
| 299 | c.locator = CBlockLocator.stream_deserialize(f) |
| 300 | c.hashstop = ser_read(f, 32) |
| 301 | return c |
| 302 | |
| 303 | def msg_ser(self, f): |
| 304 | self.locator.stream_serialize(f) |
nothing calls this directly
no test coverage detected