(self, scriptWitness=CScriptWitness())
| 275 | __slots__ = ['scriptWitness'] |
| 276 | |
| 277 | def __init__(self, scriptWitness=CScriptWitness()): |
| 278 | object.__setattr__(self, 'scriptWitness', scriptWitness) |
| 279 | |
| 280 | def is_null(self): |
| 281 | return self.scriptWitness.is_null() |
nothing calls this directly
no test coverage detected