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 - re add % symbol and multiply progress by 100
Browse files Browse the repository at this point in the history
  • Loading branch information
CryptAxe authored Mar 9, 2024
1 parent 2e7051e commit 838d907
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/qt/drivechaingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1356,7 +1356,8 @@ 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', 5);
label += QString::number(nVerificationProgress * 100.0, 'f', 5);
label += "%";
label += ")";
labelNumBlocks->setText(label);

Expand Down

0 comments on commit 838d907

Please sign in to comment.