diff options
| author | Philip Kaufmann <[email protected]> | 2012-06-03 13:03:55 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2012-06-09 00:34:10 +0200 |
| commit | 40d23dafb70bc296ce33ea67503c16c7035664c0 (patch) | |
| tree | 6c102cffd2a2584268c6426379f09e61c21261d4 /src/qt/transactiontablemodel.cpp | |
| parent | Merge pull request #1421 from Diapolo/netbase_fix_sign_warnings (diff) | |
| download | discoin-40d23dafb70bc296ce33ea67503c16c7035664c0.tar.xz discoin-40d23dafb70bc296ce33ea67503c16c7035664c0.zip | |
update info string in GUI for generated blocks and change "must wait" into "must mature" to take the new immature label into consideration
Diffstat (limited to 'src/qt/transactiontablemodel.cpp')
| -rw-r--r-- | src/qt/transactiontablemodel.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index d36bb495a..a86b1f7c5 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -298,8 +298,7 @@ QString TransactionTableModel::formatTxStatus(const TransactionRecord *wtx) cons switch(wtx->status.maturity) { case TransactionStatus::Immature: - status += "\n" + tr("Mined balance will be available in %n more blocks", "", - wtx->status.matures_in); + status += "\n" + tr("Mined balance will be available when it matures in %n more block(s)", "", wtx->status.matures_in); break; case TransactionStatus::Mature: break; |