From f8ada2435bd3f6b7a1165eae5fdfd6ac8a96f018 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Mon, 5 Sep 2016 10:54:25 +1200 Subject: [PATCH] Be excited about validating transactions! --- src/metrics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/metrics.cpp b/src/metrics.cpp index 4d339b919..bb1fe66bc 100644 --- a/src/metrics.cpp +++ b/src/metrics.cpp @@ -109,7 +109,7 @@ int printMetrics(size_t cols, int64_t nStart, bool mining) std::cout << strDuration << std::endl; lines += (strDuration.size() / cols); - std::cout << "- " << strprintf(_("You have validated %d transactions."), transactionsValidated.get()) << std::endl; + std::cout << "- " << strprintf(_("You have validated %d transactions!"), transactionsValidated.get()) << std::endl; if (mining) { double hps = uptime > 0 ? (double)solutionTargetChecks.get() / uptime : 0;