(self, f)
| 324 | return CTxWitness(vtxinwit) |
| 325 | |
| 326 | def stream_serialize(self, f): |
| 327 | for i in range(len(self.vtxinwit)): |
| 328 | self.vtxinwit[i].stream_serialize(f) |
| 329 | |
| 330 | def __repr__(self): |
| 331 | return "CTxWitness(%s)" % (','.join(repr(w) for w in self.vtxinwit)) |
nothing calls this directly
no test coverage detected