Merge pull request #2412 from cmgustavo/bug/pending-tx-01

Display unsent transactions on HomeWallet
This commit is contained in:
Matias Alejo Garcia 2015-02-18 11:07:06 -03:00
commit f94598dde8
2 changed files with 17 additions and 4 deletions

View file

@ -1487,7 +1487,7 @@ Wallet.prototype.getPendingTxProposals = function() {
var satToUnit = 1 / this.settings.unitToSatoshi;
_.each(txps, function(inTxp, ntxid) {
if (!inTxp.isPending(maxRejectCount))
if (!inTxp.isPending(maxRejectCount) || (inTxp.sentTs && inTxp.isFullySigned()))
return;
var txp = _.clone(inTxp);