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