| 283 | }; |
| 284 | |
| 285 | inline void get_hash_hex_string(const hash256_one_by_one& hasher, |
| 286 | std::string& hex_str) { |
| 287 | byte_t hash[k_digest_size]; |
| 288 | hasher.get_hash_bytes(hash, hash + k_digest_size); |
| 289 | return bytes_to_hex_string(hash, hash + k_digest_size, hex_str); |
| 290 | } |
| 291 | |
| 292 | inline std::string get_hash_hex_string(const hash256_one_by_one& hasher) { |
| 293 | std::string hex_str; |
nothing calls this directly
no test coverage detected