Update UI block status (#1510)

This commit is contained in:
Russel Waters 2018-12-28 15:50:36 -05:00 committed by Roy Keene
commit d47c54ec49

View file

@ -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 ();