From 42b4b24c14a83d1f5fb39c616431ae3b4a43ba89 Mon Sep 17 00:00:00 2001 From: robby-dermody Date: Sun, 26 Jun 2016 12:01:34 -0400 Subject: [PATCH] get up to 5000 history entries instead of 100 by default (fixes #565) --- src/js/components/history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/components/history.js b/src/js/components/history.js index 4e89bd6af..e958684f4 100644 --- a/src/js/components/history.js +++ b/src/js/components/history.js @@ -272,7 +272,7 @@ function TransactionHistoryViewModel() { self.transactions([]); $('#txnHistory').dataTable().fnClearTable(); $('#txnHistory_wrapper').hide(); - failoverAPI("get_raw_transactions", {address: newSelection}, function(data, endpoint) { + failoverAPI("get_raw_transactions", {address: newSelection, limit: 5000}, function(data, endpoint) { //clear table data and populate with the new data (which comes in the order of newest to oldest) for (var i = 0; i < data.length; i++) { self.transactions.push(new TransactionHistoryItemViewModel(data[i]));