Adding missing parameter.

This commit is contained in:
Brendon Duncan 2018-08-22 19:39:32 +12:00
commit 745737ef73

View file

@ -339,7 +339,7 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
// Check if we have more than we are displaying
if (completeTxHistory.length > $scope.txHistory.length) {
currentTxHistoryDisplayPage++;
showHistory();
showHistory(false);
$scope.$broadcast('scroll.infiniteScrollComplete');
return;
}