| 313 | } |
| 314 | |
| 315 | QString TransactionTableModel::formatTxDate(const TransactionRecord *wtx) const |
| 316 | { |
| 317 | if(wtx->time) |
| 318 | { |
| 319 | return GUIUtil::dateTimeStr(wtx->time); |
| 320 | } |
| 321 | return QString(); |
| 322 | } |
| 323 | |
| 324 | /* Look up address in address book, if found return label (address) |
| 325 | otherwise just return (address) |
nothing calls this directly
no test coverage detected