number of confirmations is no longer magic value

This commit is contained in:
Wladimir J. van der Laan 2011-06-20 21:31:06 +02:00
parent 679592720a
commit 18b99e3f69
3 changed files with 5 additions and 2 deletions

View file

@ -211,7 +211,7 @@ void TransactionRecord::updateStatus(const CWalletTx &wtx)
{
status.status = TransactionStatus::Offline;
}
else if (status.depth < 6)
else if (status.depth < NumConfirmations)
{
status.status = TransactionStatus::Unconfirmed;
}

View file

@ -59,6 +59,9 @@ public:
SendToSelf
};
/* Number of confirmation needed for transaction */
static const int NumConfirmations = 6;
TransactionRecord():
hash(), time(0), type(Other), address(""), debit(0), credit(0), idx(0)
{

View file

@ -276,7 +276,7 @@ QVariant TransactionTableModel::formatTxStatus(const TransactionRecord *wtx) con
status = tr("Offline (%1)").arg(wtx->status.depth);
break;
case TransactionStatus::Unconfirmed:
status = tr("Unconfirmed (%1)").arg(wtx->status.depth);
status = tr("Unconfirmed (%1/%2)").arg(wtx->status.depth).arg(TransactionRecord::NumConfirmations);
break;
case TransactionStatus::HaveConfirmations:
status = tr("Confirmed (%1)").arg(wtx->status.depth);