fix import / logs

This commit is contained in:
Matias Alejo Garcia 2014-11-30 04:42:39 -03:00
commit 49205a76a0
6 changed files with 25 additions and 59 deletions

View file

@ -497,8 +497,6 @@ PublicKeyRing.prototype.getCosigner = function(pubKey) {
PublicKeyRing.prototype.buildAddressCache = function() {
var ret = [];
var self = this;
log.info('Rebuilding Address Cache...this will take a while');
_.each(this.indexes, function(index) {
for (var i = 0; i < index.receiveIndex; i++) {
self._getAddress(i, false, index.copayerIndex);
@ -507,7 +505,6 @@ PublicKeyRing.prototype.buildAddressCache = function() {
self._getAddress(i, true, index.copayerIndex);
}
});
log.info('...done!');
};