removed transaction proposals from history. Just list transactions sent
This commit is contained in:
parent
4afcad4601
commit
950a89727b
5 changed files with 75 additions and 53 deletions
|
|
@ -60,6 +60,9 @@ angular.module('copayApp.controllers').controller('HistoryController',
|
|||
|
||||
_.each(res, function (r) {
|
||||
r.ts = r.minedTs || r.sentTs;
|
||||
if (r.action === 'sent') {
|
||||
r.actionList = controllerUtils.getActionList(r.peerActions);
|
||||
}
|
||||
});
|
||||
$scope.blockchain_txs = w.cached_txs = res;
|
||||
$scope.loading = false;
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ angular.module('copayApp.controllers').controller('SendController',
|
|||
setTimeout(function() {
|
||||
$scope.loading = false;
|
||||
$rootScope.$digest();
|
||||
}, 0);
|
||||
}, 1);
|
||||
}
|
||||
|
||||
$scope.showAddressBook = function() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue