From db5505b1e330dc5986719bace95e3bb57a4dfa61 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Tue, 9 Sep 2014 15:40:12 -0300 Subject: [PATCH] fix received --- js/models/core/Wallet.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/models/core/Wallet.js b/js/models/core/Wallet.js index 1b35a85ba..693eabe51 100644 --- a/js/models/core/Wallet.js +++ b/js/models/core/Wallet.js @@ -653,6 +653,7 @@ Wallet.prototype._setBlockchainListeners = function() { this.blockchain.on('disconnect', self.emit.bind(self,'networkError')); this.blockchain.on('tx', function(tx) { +console.log('[Wallet.js.655:tx:]',tx); //TODO self.emit('tx', tx.address); });