Skip to content

Commit

Permalink
[GUI] Improving topbar MNs sync status text.
Browse files Browse the repository at this point in the history
  • Loading branch information
furszy committed Mar 11, 2020
1 parent bb9b762 commit 70e009f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/masternode-sync.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ std::string CMasternodeSync::GetSyncStatus()
{
switch (masternodeSync.RequestedMasternodeAssets) {
case MASTERNODE_SYNC_INITIAL:
return _("Synchronization pending...");
return _("MNs synchronization pending...");
case MASTERNODE_SYNC_SPORKS:
return _("Synchronizing sporks...");
case MASTERNODE_SYNC_LIST:
Expand Down
2 changes: 1 addition & 1 deletion src/qt/pivx/topbar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ void TopBar::setNumBlocks(int count) {
int progress = nAttempt + (masternodeSync.RequestedMasternodeAssets - 1) * MASTERNODE_SYNC_THRESHOLD;
if(progress >= 0){
// todo: MN progress..
text = strprintf("Synchronizing masternodes data... - Block: %d", count);
text = strprintf("%s - Block: %d", masternodeSync.GetSyncStatus(), count);
//progressBar->setMaximum(4 * MASTERNODE_SYNC_THRESHOLD);
//progressBar->setValue(progress);
needState = false;
Expand Down

0 comments on commit 70e009f

Please sign in to comment.