* Returns the first 64 bits from the resulting hash. */
| 141 | * Returns the first 64 bits from the resulting hash. |
| 142 | */ |
| 143 | inline uint64_t GetCheapHash() { |
| 144 | uint256 result = GetHash(); |
| 145 | return ReadLE64(result.begin()); |
| 146 | } |
| 147 | |
| 148 | template<typename T> |
| 149 | CHashWriter& operator<<(const T& obj) { |
no test coverage detected