this used to call `GetCheapHash()` in uint256, which was later moved; the cheap hash function simply calls ReadLE64() however, so the end result is identical
| 86 | // cheap hash function simply calls ReadLE64() however, so the end result is |
| 87 | // identical |
| 88 | size_t operator()(const uint256& hash) const { return ReadLE64(hash.begin()); } |
| 89 | }; |
| 90 | |
| 91 | class SaltedSipHasher |