Skip to content
Snippets Groups Projects
Commit dcbd4637 authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] My Operations: Hide change operations (TX to himself) - fix #891

parent 8ebccda1
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,7 @@ angular.module('cesium.tx.services', ['ngApi', 'cesium.bma.services',
return sum - outputAmount;
}
}
}
// Complex unlock condition, on the issuer pubkey
......@@ -95,8 +96,8 @@ angular.module('cesium.tx.services', ['ngApi', 'cesium.bma.services',
var time = tx.time || tx.blockstampTime;
// Avoid duplicated tx, or tx to him self
var txKey = amount + ':' + tx.hash + ':' + time;
if (!processedTxMap[txKey]) {
var txKey = (amount !== 0) && amount + ':' + tx.hash + ':' + time;
if (txKey && !processedTxMap[txKey]) {
processedTxMap[txKey] = true; // Mark as processed
var newTx = {
time: time,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment