Parse the object from on-the-wire data.
(self, parser)
| 160 | self.ticket = None |
| 161 | |
| 162 | def parse(self, parser): |
| 163 | """Parse the object from on-the-wire data.""" |
| 164 | self.ticket_lifetime_hint = parser.get(4) |
| 165 | self.ticket = parser.getVarBytes(2) |
| 166 | return self |
| 167 | |
| 168 | def __format__(self, formatstr): |
| 169 | """Return human-readable representation of the object.""" |
nothing calls this directly
no outgoing calls
no test coverage detected