fix set sent

This commit is contained in:
Matias Alejo Garcia 2014-04-20 21:23:53 -03:00
commit 17431e29c5
2 changed files with 11 additions and 4 deletions

View file

@ -348,8 +348,14 @@ Wallet.prototype.sendTx = function(ntxid) {
var self = this;
this.blockchain.sendRawTransaction(txHex, function(txid) {
self.log('BITCOND txid:',txid); //TODO
console.log('[Wallet.js.351]'); //TODO
if (txid) {
console.log('[Wallet.js.354]',self); //TODO
self.txProposals.setSent(ntxid);
console.log('[Wallet.js.353]', self.txProposals); //TODO
self.sendTxProposals();
self.store();
}