(self, f)
| 319 | # FIXME this cannot be a @classmethod like the others because we need to |
| 320 | # know how many items to deserialize, which comes from len(vin) |
| 321 | def stream_deserialize(self, f): |
| 322 | vtxinwit = tuple(CTxInWitness.stream_deserialize(f) for dummy in |
| 323 | range(len(self.vtxinwit))) |
| 324 | return CTxWitness(vtxinwit) |
| 325 | |
| 326 | def stream_serialize(self, f): |
| 327 | for i in range(len(self.vtxinwit)): |
no test coverage detected