From a29585a8264a3ad1c05de4f640639fc941facd9b Mon Sep 17 00:00:00 2001 From: Matias Pando Date: Wed, 29 Oct 2014 16:13:19 -0300 Subject: [PATCH] function deleted --- js/models/Wallet.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/js/models/Wallet.js b/js/models/Wallet.js index 12935d98b..3ca84301d 100644 --- a/js/models/Wallet.js +++ b/js/models/Wallet.js @@ -246,13 +246,6 @@ Wallet.prototype._newAddresses = function(dontUpdateUx) { }; -Wallet.prototype._publicKeyRingUpdated = function(isComplete) { - if (isComplete) { - this.subscribeToAddresses(); - }; - this.emitAndKeepAlive('publicKeyRingUpdated'); -}; - /** * @desc Handles an 'indexes' message. * @@ -330,7 +323,7 @@ Wallet.prototype._onPublicKeyRing = function(senderId, data) { this._lockIncomming(); } - this._publicKeyRingUpdated(this.publicKeyRing.isComplete()); + this.emitAndKeepAlive('publicKeyRingUpdated'); } };