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

Commit

Permalink
Increase IBD percentage precision
Browse files Browse the repository at this point in the history
  • Loading branch information
CryptAxe committed Feb 25, 2024
1 parent d9a8d7d commit 64ad6a0
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, 'f', 2).right(2);
label += QString::number(nVerificationProgress, 'f', 5);
label += "%";
label += ")";
labelNumBlocks->setText(label);
Expand Down

0 comments on commit 64ad6a0

Please sign in to comment.