diff --git a/public/views/includes/transaction.html b/public/views/includes/transaction.html
index 0a0be0be0..95944e441 100644
--- a/public/views/includes/transaction.html
+++ b/public/views/includes/transaction.html
@@ -1,6 +1,6 @@
+ ng-click="home.openTxpModal(tx, index.copayers, !!index.glideraStatus)">
diff --git a/public/views/modals/txp-details.html b/public/views/modals/txp-details.html
index c002a3c0e..6597ffb35 100644
--- a/public/views/modals/txp-details.html
+++ b/public/views/modals/txp-details.html
@@ -133,15 +133,19 @@
-
+
Payment accepted, but not yet broadcasted
+ ng-disabled="loading"
+ >
Broadcast Payment
+
+
Payment accepted. It will be broadcasted by Glidera. It case there is a problem, it can be deleted after 6 hours it was created.
+
Payment sent
@@ -153,7 +157,7 @@
-
+
* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created.
GLIDERA_LOCK_TIME;
+ // ToDo: use tx.customData instead of tx.message
+ if (tx.message === 'Glidera transaction' && isGlidera) {
+ tx.isGlidera = true;
+ if (tx.canBeRemoved) {
+ tx.canBeRemoved = (Date.now()/1000 - (tx.ts || tx.createdOn)) > GLIDERA_LOCK_TIME;
+ }
}
+ $scope.tx = tx;
+
refreshUntilItChanges = false;
$scope.currentSpendUnconfirmed = currentSpendUnconfirmed;