diff options
| author | Jonas Schnelli <[email protected]> | 2016-03-17 17:54:54 +0100 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2016-04-04 09:25:34 +0200 |
| commit | 8efed3bc93a15fc715fd4f3cca50f44685872b5e (patch) | |
| tree | d25414acbb18118519aab29ae23e6339fc8553ff /src/qt/transactiondesc.cpp | |
| parent | Merge #7558: [RPC] Add import/removeprunedfunds rpc call (diff) | |
| download | discoin-8efed3bc93a15fc715fd4f3cca50f44685872b5e.tar.xz discoin-8efed3bc93a15fc715fd4f3cca50f44685872b5e.zip | |
[Qt] Support for abandoned/abandoning transactions
Diffstat (limited to 'src/qt/transactiondesc.cpp')
| -rw-r--r-- | src/qt/transactiondesc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/transactiondesc.cpp b/src/qt/transactiondesc.cpp index 5cb4cd5af..1b8bf978a 100644 --- a/src/qt/transactiondesc.cpp +++ b/src/qt/transactiondesc.cpp @@ -39,7 +39,7 @@ QString TransactionDesc::FormatTxStatus(const CWalletTx& wtx) else if (GetAdjustedTime() - wtx.nTimeReceived > 2 * 60 && wtx.GetRequestCount() == 0) return tr("%1/offline").arg(nDepth); else if (nDepth == 0) - return tr("0/unconfirmed, %1").arg((wtx.InMempool() ? tr("in memory pool") : tr("not in memory pool"))); + return tr("0/unconfirmed, %1").arg((wtx.InMempool() ? tr("in memory pool") : tr("not in memory pool"))) + (wtx.isAbandoned() ? ", "+tr("abandoned") : ""); else if (nDepth < 6) return tr("%1/unconfirmed").arg(nDepth); else |