Merge pull request #1599 from matiaspando/feature/functionDeleted

function deleted
This commit is contained in:
Gustavo Maximiliano Cortez 2014-10-30 10:27:17 -03:00
commit 35eed69cc2

View file

@ -264,13 +264,6 @@ Wallet.prototype._newAddresses = function(dontUpdateUx) {
}; };
Wallet.prototype._publicKeyRingUpdated = function(isComplete) {
if (isComplete) {
this.subscribeToAddresses();
};
this.emitAndKeepAlive('publicKeyRingUpdated');
};
/** /**
* @desc Handles an 'indexes' message. * @desc Handles an 'indexes' message.
* *
@ -348,7 +341,7 @@ Wallet.prototype._onPublicKeyRing = function(senderId, data) {
this._lockIncomming(); this._lockIncomming();
} }
this._publicKeyRingUpdated(this.publicKeyRing.isComplete()); this.emitAndKeepAlive('publicKeyRingUpdated');
} }
}; };