add buildermockv0 to show old / obsolete tx proposals

This commit is contained in:
Matias Alejo Garcia 2014-07-25 11:59:13 -03:00
commit 2008db932b
3 changed files with 36 additions and 3 deletions

View file

@ -488,7 +488,10 @@ Wallet.prototype.getTxProposals = function() {
txp.finallyRejected = true;
}
ret.push(txp);
if (txp.readonly && !txp.finallyRejected && !txp.sentTs) {
} else {
ret.push(txp);
}
}
return ret;
};