(self, f)
| 286 | return cls(scriptWitness) |
| 287 | |
| 288 | def stream_serialize(self, f): |
| 289 | self.scriptWitness.stream_serialize(f) |
| 290 | |
| 291 | def __repr__(self): |
| 292 | return "CTxInWitness(%s)" % (repr(self.scriptWitness)) |
nothing calls this directly
no test coverage detected