(self, f)
| 343 | self.scriptPubKey = scriptPubKey |
| 344 | |
| 345 | def deserialize(self, f): |
| 346 | self.nValue = struct.unpack("<q", f.read(8))[0] |
| 347 | self.scriptPubKey = deser_string(f) |
| 348 | |
| 349 | def serialize(self): |
| 350 | r = b"" |
nothing calls this directly
no test coverage detected