diff --git a/public/include/classes/transaction.class.php b/public/include/classes/transaction.class.php
index 4c29cc3f..71aeb95c 100644
--- a/public/include/classes/transaction.class.php
+++ b/public/include/classes/transaction.class.php
@@ -112,6 +112,7 @@ class Transaction extends Base {
t.amount AS amount,
t.coin_address AS coin_address,
t.timestamp AS timestamp,
+ t.txid AS txid,
b.height AS height,
b.blockhash AS blockhash,
b.confirmations AS confirmations
diff --git a/public/templates/mpos/account/transactions/default.tpl b/public/templates/mpos/account/transactions/default.tpl
index a761f825..2b936780 100644
--- a/public/templates/mpos/account/transactions/default.tpl
+++ b/public/templates/mpos/account/transactions/default.tpl
@@ -68,14 +68,15 @@
- | TX # |
- Account |
- Date |
- TX Type |
+ ID |
+ Account |
+ Date |
+ TX Type |
Status |
- Payment Address |
- Block # |
- Amount |
+ Payment Address |
+ TX # |
+ Block # |
+ Amount |
@@ -97,7 +98,8 @@
{else if $TRANSACTIONS[transaction].confirmations == -1}Orphaned
{else}Unconfirmed{/if}
- {$TRANSACTIONS[transaction].coin_address} |
+ {$TRANSACTIONS[transaction].coin_address|truncate:20:"...":true:true} |
+ {$TRANSACTIONS[transaction].txid|truncate:20:"...":true:true} |
{if $TRANSACTIONS[transaction].height == 0}n/a{else}{$TRANSACTIONS[transaction].height}{/if} |
{$TRANSACTIONS[transaction].amount|number_format:"8"} |
diff --git a/public/templates/mpos/admin/transactions/default.tpl b/public/templates/mpos/admin/transactions/default.tpl
index 9a88324f..364fa511 100644
--- a/public/templates/mpos/admin/transactions/default.tpl
+++ b/public/templates/mpos/admin/transactions/default.tpl
@@ -75,14 +75,15 @@
- | TX # |
- Account |
- Date |
- TX Type |
+ ID |
+ Account |
+ Date |
+ TX Type |
Status |
- Payment Address |
- Block # |
- Amount |
+ Payment Address |
+ TX # |
+ Block # |
+ Amount |
@@ -104,7 +105,8 @@
{else if $TRANSACTIONS[transaction].confirmations == -1}Orphaned
{else}Unconfirmed{/if}
- {$TRANSACTIONS[transaction].coin_address} |
+ {$TRANSACTIONS[transaction].coin_address|truncate:20:"...":true:true} |
+ {$TRANSACTIONS[transaction].txid|truncate:20:"...":true:true} |
{if $TRANSACTIONS[transaction].height == 0}n/a{else}{/if}{$TRANSACTIONS[transaction].height} |
{$TRANSACTIONS[transaction].amount|number_format:"8"} |