Browse Source

explorer now only looks 100 blocks in the past when generating new block info

pull/1/head
dan_s 2 years ago
parent
commit
6b10e414ac
  1. 2
      var/www/explorer.dragonx.is/bin/update_blocks_redis.pl

2
var/www/explorer.dragonx.is/bin/update_blocks_redis.pl

@ -40,7 +40,7 @@ $STATS->{TX_TABLE} = "";
my $mineraddress = "";
# for my $h (1 .. $height) {
for my $h (1 .. $height) {
for my $h ($height-100 .. $height) {
#for my $h (910265 .. 910270) {
#last if($h < 0);
my $thisminer = "";

Loading…
Cancel
Save