Skip to content

Commit f9ce79c

Browse files
committed
Mint as Issuance
1 parent b3d954a commit f9ce79c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/ethplorer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -463,8 +463,8 @@ Ethplorer = {
463463
tdDate.html(Ethplorer.Utils.getEthplorerLink(tx.transactionHash, Ethplorer.Utils.ts2date(tx.timestamp, false), false));
464464
tdDate.find('a').attr('title', Ethplorer.Utils.ts2date(tx.timestamp, true));
465465
tdHash.html(Ethplorer.Utils.getEthplorerLink(tx.transactionHash));
466-
tdOpType.html(tx.type === 'issuance' ? 'Issuance' : 'Burn');
467-
tdQty.html((tx.type === 'issuance' ? '+' : '-') + Ethplorer.Utils.formatNum(qty, true, oToken.decimals ? oToken.decimals : 18, 2) + ((oToken.symbol) ? ' ' + oToken.symbol : ''));
466+
tdOpType.html(tx.type.toString().toUpperCase());
467+
tdQty.html((tx.type !== 'burn' ? '+' : '-') + Ethplorer.Utils.formatNum(qty, true, oToken.decimals ? oToken.decimals : 18, 2) + ((oToken.symbol) ? ' ' + oToken.symbol : ''));
468468
row.append(tdDate, tdHash, tdOpType, tdQty);
469469
$('#address-issuances .table').append(row);
470470
}

0 commit comments

Comments
 (0)