add gas limit chart

This commit is contained in:
Fabian Vogelsteller
2015-08-06 12:22:47 +02:00
parent c4f8343372
commit c1f1a0989d
3 changed files with 46 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ netStatsApp.controller('StatsCtrl', function($scope, $filter, $localStorage, soc
$scope.uncleCount = 0;
$scope.bestStats = {};
$scope.lastGasLimit = _.fill(Array(MAX_BINS), 2);
$scope.lastBlocksTime = _.fill(Array(MAX_BINS), 2);
$scope.difficultyChart = _.fill(Array(MAX_BINS), 2);
$scope.transactionDensity = _.fill(Array(MAX_BINS), 2);
@@ -327,6 +328,9 @@ netStatsApp.controller('StatsCtrl', function($scope, $filter, $localStorage, soc
if( !_.isEqual($scope.avgHashrate, data.avgHashrate) )
$scope.avgHashrate = data.avgHashrate;
if( !_.isEqual($scope.lastGasLimit, data.gasLimit) && data.gasLimit.length >= MAX_BINS )
$scope.lastGasLimit = data.gasLimit;
if( !_.isEqual($scope.lastBlocksTime, data.blocktime) && data.blocktime.length >= MAX_BINS )
$scope.lastBlocksTime = data.blocktime;

View File

@@ -88,6 +88,16 @@ block content
span.small-title uptime
span.small-value {{ upTimeTotal | upTimeFilter }}
div.row.second-row
div.col-xs-3.stat-holder.box
div.col-xs-3.stat-holder.box
div.gasprice.text-info
i.icon-gasprice
span.small-title gas limit
span.small-value {{ bestStats.block.gasLimit }} gas
div.col-xs-3.stat-holder.box
div.col-xs-3.stat-holder.box
div.row
div.col-xs-3.stat-holder
div.big-info.chart(class="{{ avgBlockTime | avgTimeClass }}")
@@ -146,6 +156,16 @@ block content
//- div.col-xs-12
nodemap#mapHolder(data="map")
div.row
div.col-xs-3.stat-holder
div.big-info.chart.text-info
//- i.icon-difficulty
span.small-title gas limit
//- span.small-value {{ lastDifficulty | number }}
sparkchart.big-details.spark-difficulty(data="{{lastGasLimit.join(',')}}")
div.row
div.col-xs-12.stats-boxes
div.row.second-row
div.col-xs-12.stat-holder.box
@@ -154,6 +174,7 @@ block content
span.small-title Block #1028201 hash
span.small-value {{frontierHash}}
//- div.clearfix
div.row(ng-cloak, style="padding-top: 10px")