From 5376ee45d1862e53d4a03c8bcd25ac88e45f2150 Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Fri, 13 Apr 2018 21:56:19 -0300 Subject: Update graft algorithm with graft fork support Graft is forking soon, with updated software released yesterday, to what will be v8 in Graft (current Graft cryptonight algorithm is graft v7). This commit updates the `graft` algorithm to recognize the fork and switch algorithms. Fork annoucement: https://www.graft.network/2018/04/12/patch-1-1-1-released-major-network-update-block-65110/ --- xmrstak/jconf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmrstak/jconf.cpp b/xmrstak/jconf.cpp index c1a9628..0f78b91 100644 --- a/xmrstak/jconf.cpp +++ b/xmrstak/jconf.cpp @@ -95,7 +95,7 @@ xmrstak_coin_algo coin_algos[] = { { "cryptonight_lite", cryptonight_lite, cryptonight_lite, 0u, nullptr }, { "edollar", cryptonight, cryptonight, 0u, nullptr }, { "electroneum", cryptonight, cryptonight, 0u, nullptr }, - { "graft", cryptonight, cryptonight, 0u, nullptr }, + { "graft", cryptonight_monero, cryptonight, 8u, nullptr }, { "haven", cryptonight_heavy, cryptonight, 2u, nullptr }, { "intense", cryptonight, cryptonight, 0u, nullptr }, { "karbo", cryptonight, cryptonight, 0u, nullptr }, -- cgit v1.1