mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-10 15:40:22 -04:00
show wallet transaction dates
This commit is contained in:
parent
24a8ecea2b
commit
dbc7ff265a
3 changed files with 3 additions and 3 deletions
|
@ -174,7 +174,9 @@ class TransactionsListItem {
|
|||
}
|
||||
}
|
||||
|
||||
this.date = new Date(0); // TODO: convert height to date
|
||||
// get tx date/time
|
||||
Long timestamp = tx.getBlock() == null ? System.currentTimeMillis() : tx.getBlock().getTimestamp() * 1000l;
|
||||
this.date = new Date(timestamp);
|
||||
dateString = DisplayUtils.formatDateTime(date);
|
||||
|
||||
isDustAttackTx = received && valueSentToMe.value < ignoreDustThreshold;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue