(cls, f, protover=PROTO_VERSION)
| 318 | |
| 319 | @classmethod |
| 320 | def msg_deser(cls, f, protover=PROTO_VERSION): |
| 321 | c = cls() |
| 322 | c.locator = CBlockLocator.stream_deserialize(f) |
| 323 | c.hashstop = ser_read(f, 32) |
| 324 | return c |
| 325 | |
| 326 | def msg_ser(self, f): |
| 327 | self.locator.stream_serialize(f) |
nothing calls this directly
no test coverage detected