(self)
| 721 | self.vchInflationKeysRangeproof, self.scriptWitness, self.peginWitness) |
| 722 | |
| 723 | def is_null(self): |
| 724 | return len(self.vchIssuanceAmountRangeproof) == 0 \ |
| 725 | and len(self.vchInflationKeysRangeproof) == 0 \ |
| 726 | and self.peginWitness.is_null() \ |
| 727 | and self.scriptWitness.is_null() |
| 728 | |
| 729 | |
| 730 | class CTxOutWitness: |