(self, protover=PROTO_VERSION)
| 289 | command = b"getblocks" |
| 290 | |
| 291 | def __init__(self, protover=PROTO_VERSION): |
| 292 | super(msg_getblocks, self).__init__(protover) |
| 293 | self.locator = CBlockLocator() |
| 294 | self.hashstop = b'\x00'*32 |
| 295 | |
| 296 | @classmethod |
| 297 | def msg_deser(cls, f, protover=PROTO_VERSION): |
nothing calls this directly
no test coverage detected