Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Update drivechaingui.cpp - change percentage precision again
Browse files Browse the repository at this point in the history
  • Loading branch information
CryptAxe authored Jun 10, 2024
1 parent 241ced2 commit fdf50ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/drivechaingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1356,7 +1356,7 @@ void BitcoinGUI::setNumBlocksIBD(int count, double nVerificationProgress)
// Display number of blocks & IBD progress
QString label = QString::number(count);
label += " blocks ( Syncing: ";
label += QString::number(nVerificationProgress * 100.0, 'f', 5);
label += QString::number(nVerificationProgress * 100.0, 'f', 3);
label += "%";
label += ")";
labelNumBlocks->setText(label);
Expand Down

0 comments on commit fdf50ff

Please sign in to comment.