| 12 | #include <algorithm> |
| 13 | |
| 14 | bool isCollision(const std::vector<uint64_t>& txHashes, const uint64_t& hash) { |
| 15 | return std::find(txHashes.begin(), txHashes.end(), hash) |
| 16 | != txHashes.end(); |
| 17 | } |
| 18 | |
| 19 | XThinBlock::XThinBlock() { } |
| 20 |
no test coverage detected