| 62 | SERIALIZE_METHODS(COutPoint, obj) { READWRITE(obj.hash, obj.n); } |
| 63 | |
| 64 | void SetNull() { hash.SetNull(); n = NULL_INDEX; } |
| 65 | bool IsNull() const { return (hash.IsNull() && n == NULL_INDEX); } |
| 66 | |
| 67 | friend bool operator<(const COutPoint& a, const COutPoint& b) |