(cls, f)
| 177 | |
| 178 | @classmethod |
| 179 | def stream_deserialize(cls, f): |
| 180 | c = cls() |
| 181 | c.vchMsg = VarStringSerializer.stream_deserialize(f) |
| 182 | c.vchSig = VarStringSerializer.stream_deserialize(f) |
| 183 | return c |
| 184 | |
| 185 | def stream_serialize(self, f): |
| 186 | VarStringSerializer.stream_serialize(self.vchMsg, f) |
nothing calls this directly
no test coverage detected