(self)
| 789 | ';'.join([repr(x) for x in self.vtxoutwit])) |
| 790 | |
| 791 | def is_null(self): |
| 792 | for x in self.vtxinwit: |
| 793 | if not x.is_null(): |
| 794 | return False |
| 795 | for x in self.vtxoutwit: |
| 796 | if not x.is_null(): |
| 797 | return False |
| 798 | return True |
| 799 | |
| 800 | |
| 801 | class CTransaction: |
no outgoing calls