Skip to content

Commit

Permalink
Removed trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
xenohunter committed Aug 24, 2017
1 parent 259393f commit 03f5545
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/js/shared/transaction.loading.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,12 @@
var feeAssetId;
if (tx.feeAsset) {
feeAssetId = tx.feeAsset;
}
}

var cached;

if (assetId) {
var cached = cache.assets[assetId];
cached = cache.assets[assetId];
if (!cached) {
sequence = sequence
.then(function () {
Expand All @@ -49,9 +51,9 @@
});
}
}

if (feeAssetId) {
var cached = cache.assets[feeAssetId];
cached = cache.assets[feeAssetId];
if (!cached) {
sequence = sequence
.then(function () {
Expand All @@ -61,7 +63,7 @@
cache.putAsset(response);
});
}
}
}
});

return sequence;
Expand Down

0 comments on commit 03f5545

Please sign in to comment.