diff options
author | fireice-uk <fireice-uk@users.noreply.github.com> | 2017-10-05 11:35:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-05 11:35:49 +0100 |
commit | 6fa8ed60a8a5bcbae4f0a934cdfcd065a4e1a3f1 (patch) | |
tree | 77bde3db07e65f735b99a5bfec7ca946923997b2 /xmrstak/cli/cli-miner.cpp | |
parent | 2c2db154315ca3249d0dee4ab50b178b185f0cd1 (diff) | |
parent | e34ce368b559eaad7bf97f7f4ef4fc770e0484c4 (diff) | |
download | xmr-stak-6fa8ed60a8a5bcbae4f0a934cdfcd065a4e1a3f1.zip xmr-stak-6fa8ed60a8a5bcbae4f0a934cdfcd065a4e1a3f1.tar.gz |
Merge pull request #14 from psychocrypt/fix-nicehashSupport
fix broken nicehash support
Diffstat (limited to 'xmrstak/cli/cli-miner.cpp')
-rw-r--r-- | xmrstak/cli/cli-miner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmrstak/cli/cli-miner.cpp b/xmrstak/cli/cli-miner.cpp index ff31d2c..a2d950d 100644 --- a/xmrstak/cli/cli-miner.cpp +++ b/xmrstak/cli/cli-miner.cpp @@ -346,7 +346,7 @@ void do_benchmark() printer::inst()->print_msg(L0, "Running a 60 second benchmark..."); uint8_t work[76] = {0}; - xmrstak::miner_work oWork = xmrstak::miner_work("", work, sizeof(work), 0, 0, 0); + xmrstak::miner_work oWork = xmrstak::miner_work("", work, sizeof(work), 0, 0, false, 0); pvThreads = xmrstak::BackendConnector::thread_starter(oWork); uint64_t iStartStamp = time_point_cast<milliseconds>(high_resolution_clock::now()).time_since_epoch().count(); |