From 40bf2eb99c577f8c67f9508c8973aa627c4b0bbc Mon Sep 17 00:00:00 2001 From: Jethro Grassie Date: Thu, 18 Oct 2018 15:21:20 -0400 Subject: [PATCH] crypto: update variant --- src/xmr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xmr.cpp b/src/xmr.cpp index 3bba7e5..739f94c 100644 --- a/src/xmr.cpp +++ b/src/xmr.cpp @@ -96,7 +96,7 @@ int parse_address(const char *input, uint64_t *prefix) void get_hash(const char *input, const size_t in_size, char **output) { - crypto::cn_slow_hash(input, in_size, reinterpret_cast(*output), 1); + crypto::cn_slow_hash(input, in_size, reinterpret_cast(*output), 2); } bool check_hash(const char* hash, uint64_t difficulty)