mirror of
https://github.com/arnaucube/goBlockchainDataAnalysis.git
synced 2026-02-07 03:36:44 +01:00
fixed address tree concurrent generation algorithm
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
<div class="col-sm-4">
|
||||
<div class="panel">
|
||||
<div class="panel-heading c_blueGrey300">
|
||||
<h3 class="panel-title">Last addresses</h3>
|
||||
<h3 class="panel-title">Last addresses used</h3>
|
||||
</div>
|
||||
<div class="panel-body" style="max-height: 300px;overflow-y: scroll;">
|
||||
<div class="list-group-item" ng-repeat="node in addresses">
|
||||
@@ -26,7 +26,7 @@
|
||||
<div class="col-sm-4">
|
||||
<div class="panel">
|
||||
<div class="panel-heading c_blueGrey300">
|
||||
<h3 class="panel-title">Other</h3>
|
||||
<h3 class="panel-title">Hours</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<canvas id="doughnut" class="chart chart-doughnut" chart-data="data" chart-labels="labels">
|
||||
@@ -43,14 +43,14 @@
|
||||
</div>
|
||||
<div class="panel-body" style="max-height: 350px;overflow-y: scroll;">
|
||||
<table class="table table-striped table-hover">
|
||||
<colgroup>
|
||||
<!--<colgroup>
|
||||
<col class="col-md-2">
|
||||
<col class="col-md-2">
|
||||
<col class="col-md-2">
|
||||
<col class="col-md-2">
|
||||
<col class="col-md-2">
|
||||
<col class="col-md-2">
|
||||
</colgroup>
|
||||
</colgroup>-->
|
||||
<thead>
|
||||
<tr>
|
||||
<th>BlockHeight</th>
|
||||
@@ -63,8 +63,8 @@
|
||||
<tbody>
|
||||
<tr ng-repeat="tx in txs">
|
||||
<td>{{tx.blockheight}}</td>
|
||||
<td style="max-width:100px;overflow-x:hidden;">{{tx.from}}</td>
|
||||
<td style="max-width:100px;overflow-x:hidden;">{{tx.to}}</td>
|
||||
<td>{{tx.from}}</td>
|
||||
<td>{{tx.to}}</td>
|
||||
<td>{{tx.label}}</td>
|
||||
<td><a ng-href="#!/tx/{{tx.id}}">View</a></td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user