Skip to content

Commit

Permalink
[Qt] Print the actual number of MN used for voting
Browse files Browse the repository at this point in the history
  • Loading branch information
Warrows committed Apr 26, 2019
1 parent 89ce7ff commit 3601d00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/governancepage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ void GovernancePage::updateProposalList()
ui->time_before_super_value->setText(QString::number(nBlocksLeft/60/24));
ui->alloted_budget_value->setText(QString::number(nTotalAllotted/COIN));
ui->unallocated_budget_value->setText(QString::number((budget.GetTotalBudget(pindexPrev->nHeight) - nTotalAllotted)/COIN));
ui->masternode_count_value->setText(QString::number(mnodeman.stable_size()));
ui->masternode_count_value->setText(QString::number(mnodeman.CountEnabled(ActiveProtocol())));
}

void GovernancePage::setExtendedProposal(CBudgetProposal* proposal)
Expand Down

0 comments on commit 3601d00

Please sign in to comment.