(self, protover=PROTO_VERSION)
| 355 | command = b"tx" |
| 356 | |
| 357 | def __init__(self, protover=PROTO_VERSION): |
| 358 | super(msg_tx, self).__init__(protover) |
| 359 | self.tx = CTransaction() |
| 360 | |
| 361 | @classmethod |
| 362 | def msg_deser(cls, f, protover=PROTO_VERSION): |
no test coverage detected