(self)
| 693 | self.peginWitness.stack = deser_string_vector(f) |
| 694 | |
| 695 | def serialize(self): |
| 696 | r = b'' |
| 697 | r += ser_string(self.vchIssuanceAmountRangeproof) |
| 698 | r += ser_string(self.vchInflationKeysRangeproof) |
| 699 | r += ser_string_vector(self.scriptWitness.stack) |
| 700 | r += ser_string_vector(self.peginWitness.stack) |
| 701 | return r |
| 702 | |
| 703 | # Used in taproot sighash calculation |
| 704 | def serialize_issuance_proofs(self): |
nothing calls this directly
no test coverage detected