From 65fa9e1f889c42d494c0056e077936fc28d27002 Mon Sep 17 00:00:00 2001 From: Decho Kocharin Date: Mon, 21 Mar 2022 08:17:45 +0700 Subject: [PATCH] Update ccminer.cpp --- ccminer.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ccminer.cpp b/ccminer.cpp index ee1c31ce9d..87b7a3d1e0 100644 --- a/ccminer.cpp +++ b/ccminer.cpp @@ -2559,6 +2559,9 @@ static void *miner_thread(void *userdata) case ALGO_X16R: rc = scanhash_x16r(thr_id, &work, max_nonce, &hashes_done); break; + case ALGO_X16RV2: + rc = scanhash_x16rv2(thr_id, &work, max_nonce, &hashes_done); + break; case ALGO_X16S: rc = scanhash_x16s(thr_id, &work, max_nonce, &hashes_done); break;