Merge pull request #3890 from matiu/feat/page-size
increment history page size
This commit is contained in:
commit
c34961a69e
1 changed files with 2 additions and 1 deletions
|
|
@ -864,7 +864,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
}
|
}
|
||||||
|
|
||||||
self.updateLocalTxHistory = function(client, cb) {
|
self.updateLocalTxHistory = function(client, cb) {
|
||||||
var requestLimit = 6;
|
var requestLimit = 5;
|
||||||
var walletId = client.credentials.walletId;
|
var walletId = client.credentials.walletId;
|
||||||
var config = configService.getSync().wallet.settings;
|
var config = configService.getSync().wallet.settings;
|
||||||
|
|
||||||
|
|
@ -913,6 +913,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
$timeout(function() {
|
$timeout(function() {
|
||||||
$rootScope.$apply();
|
$rootScope.$apply();
|
||||||
});
|
});
|
||||||
|
requestLimit = 50;
|
||||||
getNewTxs(newTxs, skip, i_cb);
|
getNewTxs(newTxs, skip, i_cb);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue