mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-06-03 16:02:34 +02:00
GUI: Treat assumed-confirmed txs as unconfirmed also in TransactionDesc
This commit is contained in:
parent
bcc23f39e0
commit
9070630df1
@ -58,7 +58,7 @@ QString TransactionDesc::FormatTxStatus(const interfaces::WalletTxStatus& status
|
||||
s += QLatin1String(", ") + tr("abandoned");
|
||||
}
|
||||
return s;
|
||||
} else if (depth < 6) {
|
||||
} else if (depth < TransactionRecord::RecommendedNumConfirmations || status.is_assumed) {
|
||||
/*: Text explaining the current status of a transaction, shown in the
|
||||
status field of the details window for this transaction. This
|
||||
status represents a transaction confirmed in at least one block,
|
||||
|
Loading…
Reference in New Issue
Block a user