From 9673016395513b16d46539b2755672ba30657846 Mon Sep 17 00:00:00 2001 From: Ivan Socolsky Date: Wed, 8 Oct 2014 12:05:46 -0300 Subject: [PATCH] Disabled cleanup of TXPs with spent utxos --- js/services/controllerUtils.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/services/controllerUtils.js b/js/services/controllerUtils.js index 408ee22fc..38c039809 100644 --- a/js/services/controllerUtils.js +++ b/js/services/controllerUtils.js @@ -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;