Merge branch 'wallet/task/593' of https://github.com/Bitcoin-com/Wallet into wallet/task/593

This commit is contained in:
Jean-Baptiste Dominguez 2018-09-24 16:54:53 +02:00
commit 8039ea26da
6 changed files with 7 additions and 6 deletions

View file

@ -7,8 +7,8 @@
.factory('walletHistoryService', walletHistoryService);
function walletHistoryService(configService, storageService, lodash, $log, txFormatService) {
//var PAGE_SIZE = 50;
var PAGE_SIZE = 20; // For dev only
var PAGE_SIZE = 50;
//var PAGE_SIZE = 20; // For dev only
// How much to overlap on each end of the page, for mitigating inconsistent sort order.
var PAGE_OVERLAP_FRACTION = 0.2;
var PAGE_OVERLAP = Math.floor(PAGE_SIZE * PAGE_OVERLAP_FRACTION);