Merge branch 'backend_2.0' of https://github.com/hyle-team/zano-explorer-zarcanum into backend_2.0
This commit is contained in:
commit
d700bdd41f
1 changed files with 2 additions and 2 deletions
|
|
@ -74,8 +74,8 @@ function TransactionPool() {
|
|||
}
|
||||
|
||||
const tableElements = poolElements.map((element) => ([
|
||||
timestampToLocalDate(parseInt(element.timestamp, 10)*1000),
|
||||
timeAgo(parseInt(element.timestamp, 10)*1000),
|
||||
timestampToLocalDate(new Date(element.timestamp).getTime()),
|
||||
timeAgo(new Date(element.timestamp).getTime()),
|
||||
element.blob_size + " bytes",
|
||||
parseInt(element.fee, 10)/10**12,
|
||||
<AliasText to={`/transaction/${element.id}`}>{element.tx_id}</AliasText>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue