if there is no current block number available display N/A on totalBlocks label, instead of 0, which can not ever be true
This commit is contained in:
parent
a8fef7f569
commit
66331f2b51
1 changed files with 2 additions and 1 deletions
|
@ -232,7 +232,8 @@ void RPCConsole::setNumBlocks(int count)
|
||||||
ui->numberOfBlocks->setText(QString::number(count));
|
ui->numberOfBlocks->setText(QString::number(count));
|
||||||
if(clientModel)
|
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());
|
ui->lastBlockTime->setText(clientModel->getLastBlockDate().toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue