Merge pull request #2412 from cmgustavo/bug/pending-tx-01
Display unsent transactions on HomeWallet
This commit is contained in:
commit
f94598dde8
2 changed files with 17 additions and 4 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue