From 199b3aafd3780574456530f2296de805297e8158 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 5 Oct 2016 18:45:00 -0500 Subject: [PATCH] Use solutions per second (Sol/s) Part of #1422 --- src/metrics.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/metrics.cpp b/src/metrics.cpp index bb1fe66bc..32fc4ba05 100644 --- a/src/metrics.cpp +++ b/src/metrics.cpp @@ -112,9 +112,9 @@ int printMetrics(size_t cols, int64_t nStart, bool mining) std::cout << "- " << strprintf(_("You have validated %d transactions!"), transactionsValidated.get()) << std::endl; if (mining) { - double hps = uptime > 0 ? (double)solutionTargetChecks.get() / uptime : 0; - std::string strHps = strprintf("%.4f H/s", hps); - std::cout << "- " << strprintf(_("You have contributed %s on average to the network hash rate."), strHps) << std::endl; + double solps = uptime > 0 ? (double)solutionTargetChecks.get() / uptime : 0; + std::string strSolps = strprintf("%.4f Sol/s", solps); + std::cout << "- " << strprintf(_("You have contributed %s on average to the network solution rate."), strSolps) << std::endl; std::cout << "- " << strprintf(_("You have completed %d Equihash solver runs."), ehSolverRuns.get()) << std::endl; lines += 2;