Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
get up to 5000 history entries instead of 100 by default (fixes #565)
Browse files Browse the repository at this point in the history
  • Loading branch information
robby-d committed Jun 26, 2016
1 parent 4546bc2 commit 42b4b24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/components/history.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]));
Expand Down

0 comments on commit 42b4b24

Please sign in to comment.