(self, protover=PROTO_VERSION)
| 312 | command = b"getheaders" |
| 313 | |
| 314 | def __init__(self, protover=PROTO_VERSION): |
| 315 | super(msg_getheaders, self).__init__(protover) |
| 316 | self.locator = CBlockLocator() |
| 317 | self.hashstop = b'\x00'*32 |
| 318 | |
| 319 | @classmethod |
| 320 | def msg_deser(cls, f, protover=PROTO_VERSION): |
nothing calls this directly
no test coverage detected