Merge pull request #1556 from isocolsky/fix/corrupt_tx

Disabled cleanup of TXPs with spent utxos
This commit is contained in:
Matias Alejo Garcia 2014-10-09 14:58:18 -03:00
commit c7ace2f7bb
1 changed files with 3 additions and 1 deletions

View File

@ -257,7 +257,9 @@ angular.module('copayApp.services')
}
});
w.removeTxWithSpentInputs();
// Disabling this as discrepancies in local time on copayer machines is causing
// valid TXPs to get removed
//w.removeTxWithSpentInputs();
$rootScope.txs = txs;
$rootScope.txsOpts = opts;