mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-27 23:14:24 +00:00
Clarity: change definition of "confirmed" to "counts towards balance"
This commit is contained in:
parent
2ccd47596b
commit
186f3e2f0c
@ -588,7 +588,9 @@ QVariant TransactionTableModel::data(const QModelIndex &index, int role) const
|
||||
}
|
||||
else if (role == ConfirmedRole)
|
||||
{
|
||||
return rec->status.status == TransactionStatus::HaveConfirmations;
|
||||
// Return True if transaction counts for balance
|
||||
return rec->status.confirmed && !(rec->type == TransactionRecord::Generated &&
|
||||
rec->status.maturity != TransactionStatus::Mature);
|
||||
}
|
||||
else if (role == FormattedAmountRole)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user