(self, f)
| 374 | return self.hash == 0 and self.n == 4294967295 |
| 375 | |
| 376 | def deserialize(self, f): |
| 377 | self.hash = deser_uint256(f) |
| 378 | self.n = struct.unpack("<I", f.read(4))[0] |
| 379 | |
| 380 | def serialize(self): |
| 381 | r = b"" |
nothing calls this directly
no test coverage detected