From d47c54ec49c35b2692920388aa03bbfc64a10820 Mon Sep 17 00:00:00 2001 From: Russel Waters Date: Fri, 28 Dec 2018 15:50:36 -0500 Subject: [PATCH] Update UI block status (#1510) --- rai/qt/qt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rai/qt/qt.cpp b/rai/qt/qt.cpp index 8edee80a..ae60cb85 100644 --- a/rai/qt/qt.cpp +++ b/rai/qt/qt.cpp @@ -906,10 +906,10 @@ std::string rai_qt::status::text () break; } - result += ", Block: "; + result += ", Blocks: "; if (unchecked != 0 && wallet.node.bootstrap_initiator.in_progress ()) { - count_string += " (" + std::to_string (unchecked) + ")"; + count_string += ", Queued: " + std::to_string (unchecked); } result += count_string.c_str ();