From 4fd25a44fd0ffb2166b43deec9b98b4659a88683 Mon Sep 17 00:00:00 2001 From: Stephen McCarthy Date: Thu, 23 Apr 2015 23:37:30 -0700 Subject: [PATCH] Increase blocks shown in UI from 100 up to 500 --- html/ui/js/nrs.blocks.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/ui/js/nrs.blocks.js b/html/ui/js/nrs.blocks.js index 08d971253..09128474a 100755 --- a/html/ui/js/nrs.blocks.js +++ b/html/ui/js/nrs.blocks.js @@ -241,7 +241,7 @@ var NRS = (function(NRS, $, undefined) { var blocks = []; var nrBlocks = 0; - var blockIds = response.blockIds.slice(0, 100); + var blockIds = response.blockIds.slice(0, 500); if (response.blockIds.length > 100) { $("#blocks_page_forged_warning").show(); @@ -350,7 +350,7 @@ var NRS = (function(NRS, $, undefined) { $("#blocks_average_amount").html(NRS.formatStyledAmount(averageAmount)).removeClass("loading_dots"); if (NRS.blocksPageType == "forged_blocks") { - if (blocks.length == 100) { + if (blocks.length == 500) { var blockCount = blocks.length + "+"; } else { var blockCount = blocks.length;