| 339 | } |
| 340 | |
| 341 | QString TransactionTableModel::formatTxDate(const TransactionRecord *wtx) const |
| 342 | { |
| 343 | if(wtx->time) |
| 344 | { |
| 345 | return GUIUtil::dateTimeStr(wtx->time); |
| 346 | } |
| 347 | return QString(); |
| 348 | } |
| 349 | |
| 350 | /* Look up address in address book, if found return label (address) |
| 351 | otherwise just return (address) |
nothing calls this directly
no test coverage detected