mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-17 18:40:09 +00:00
show n/a for mined transactions (and send to self) instead of empty field
This commit is contained in:
parent
05bcf7089e
commit
d8f5c59a59
@ -391,10 +391,9 @@ QString TransactionTableModel::formatTxToAddress(const TransactionRecord *wtx, b
|
|||||||
case TransactionRecord::SendToIP:
|
case TransactionRecord::SendToIP:
|
||||||
return QString::fromStdString(wtx->address);
|
return QString::fromStdString(wtx->address);
|
||||||
case TransactionRecord::SendToSelf:
|
case TransactionRecord::SendToSelf:
|
||||||
return QString();
|
|
||||||
case TransactionRecord::Generated:
|
case TransactionRecord::Generated:
|
||||||
default:
|
default:
|
||||||
return QString();
|
return tr("(n/a)");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -410,6 +409,9 @@ QVariant TransactionTableModel::addressColor(const TransactionRecord *wtx) const
|
|||||||
if(label.isEmpty())
|
if(label.isEmpty())
|
||||||
return COLOR_BAREADDRESS;
|
return COLOR_BAREADDRESS;
|
||||||
} break;
|
} break;
|
||||||
|
case TransactionRecord::SendToSelf:
|
||||||
|
case TransactionRecord::Generated:
|
||||||
|
return COLOR_BAREADDRESS;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user