diff --git a/index.html b/index.html index bf40be301..069cf57e9 100644 --- a/index.html +++ b/index.html @@ -158,13 +158,15 @@
-
-

Output

-
+
+

Pending Transactions ({{txsoutput.length}})

+
+ {{txp}}

Address 1

-

Adress 2

+

Address 2

+

Transaction description

@@ -173,24 +175,9 @@
-
-
-
-

Address 1

- -

Adress 2

-
-
-
-
-

Address 1

- -

Adress 2

-
-
-
-

Input

+
+

Last Transactions

Address 1

diff --git a/js/controllers/transactions.js b/js/controllers/transactions.js index 1af4cf9a6..e6ddbde29 100644 --- a/js/controllers/transactions.js +++ b/js/controllers/transactions.js @@ -23,16 +23,5 @@ angular.module('copay.transactions').controller('TransactionsController', } ]; - $scope.txsoutput = [ - { - fromAddr: "n3zUqNR7Bbbc4zJhPVj1vG2Lx66K3Xhzvb", - toAddr: "msvv2mDfE298s7boXwALq4Dqv77K3TWRZ1", - amount: 23.9982 - }, - { - fromAddr: "my9wnLwwUrwpNfEgSrWY62ymEGf1edKf4J", - toAddr: "monCusNiDuptf68rtr58hEjKpJt6cW6zwS", - amount: 2.22 - } - ]; + $scope.txsoutput = $rootScope.txProposals.txps; });