Removed whitespaces

This commit is contained in:
Matias Pando 2014-09-23 11:24:08 -03:00
commit 86c8137da0
3 changed files with 3 additions and 8 deletions

View file

@ -496,17 +496,15 @@ PublicKeyRing.prototype.getAddressesInfoForIndex = function(index, opts, copayer
opts = opts || {};
var isOwned = index.copayerIndex === HDPath.SHARED_INDEX || index.copayerIndex === copayerIndex;
var ret = [];
var appendAddressInfo = function(address, isChange, index) {
var appendAddressInfo = function(address, isChange) {
ret.unshift({
address: address,
addressStr: address.toString(),
isChange: isChange,
owned: isOwned,
//index: index.copayerIndex
owned: isOwned
});
};
for (var i = 0; !opts.excludeChange && i < index.changeIndex; i++) {
appendAddressInfo(this.getAddress(i, true, index.copayerIndex), true);
}