From a6bcc634603f3fc5235a022384143162385dd9f6 Mon Sep 17 00:00:00 2001 From: Gustavo Cortez Date: Tue, 13 May 2014 12:37:10 -0300 Subject: [PATCH] Fixed autorefresh transactions proposal with a 1-1 wallet --- 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 efae39e0b..3eda3de05 100644 --- a/js/models/core/Wallet.js +++ b/js/models/core/Wallet.js @@ -505,6 +505,7 @@ Wallet.prototype.createTx = function(toAddress, amountSatStr, opts, cb) { self.sendPublicKeyRing(); // Change Address self.sendTxProposals(); self.store(); + self.emit('txProposalsUpdated'); } return cb(); });