(self, f)
| 767 | self.vtxoutwit = [] |
| 768 | |
| 769 | def deserialize(self, f): |
| 770 | for i in range(len(self.vtxinwit)): |
| 771 | self.vtxinwit[i].deserialize(f) |
| 772 | for i in range(len(self.vtxoutwit)): |
| 773 | self.vtxoutwit[i].deserialize(f) |
| 774 | |
| 775 | def serialize(self): |
| 776 | r = b"" |
nothing calls this directly
no test coverage detected