Browse Source

Merge pull request #1258 from Diapolo/RPCCon_never_0_Blocks

GUI RPC Console: if there is no current block number available display N/A on totalBlocks label,...
0.8
Wladimir J. van der Laan 12 years ago
parent
commit
2692ed3f01
  1. 3
      src/qt/rpcconsole.cpp

3
src/qt/rpcconsole.cpp

@ -232,7 +232,8 @@ void RPCConsole::setNumBlocks(int count) @@ -232,7 +232,8 @@ void RPCConsole::setNumBlocks(int count)
ui->numberOfBlocks->setText(QString::number(count));
if(clientModel)
{
ui->totalBlocks->setText(QString::number(clientModel->getNumBlocksOfPeers()));
// If there is no current number available display N/A instead of 0, which can't ever be true
ui->totalBlocks->setText(clientModel->getNumBlocksOfPeers() == 0 ? tr("N/A") : QString::number(clientModel->getNumBlocksOfPeers()));
ui->lastBlockTime->setText(clientModel->getLastBlockDate().toString());
}
}

Loading…
Cancel
Save