Merge pull request #493 from colkito/fix/66-show-coinbase-info
showed coinbase info in the tx symmary
This commit is contained in:
commit
36b183f26d
2
public/css/main.min.css
vendored
2
public/css/main.min.css
vendored
File diff suppressed because one or more lines are too long
16
public/js/angularjs-all.min.js
vendored
16
public/js/angularjs-all.min.js
vendored
File diff suppressed because one or more lines are too long
4
public/js/vendors.min.js
vendored
4
public/js/vendors.min.js
vendored
File diff suppressed because one or more lines are too long
@ -737,3 +737,6 @@ a.v_highlight_more {
|
|||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
#search { color: #fff; }
|
||||||
|
}
|
||||||
|
|||||||
@ -50,23 +50,32 @@
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><strong>Received Time </strong></td>
|
<td><strong>Received Time </strong></td>
|
||||||
<td data-ng-show="tx.firstSeenTs" class="text-muted text-right">{{tx.firstSeenTs * 1000|date:'medium'}}</td>
|
|
||||||
<td data-ng-show="!tx.firstSeenTs" class="text-muted text-right">N/A</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><strong>Mined Time </strong></td>
|
|
||||||
<td data-ng-show="tx.time" class="text-muted text-right">{{tx.time * 1000|date:'medium'}}</td>
|
<td data-ng-show="tx.time" class="text-muted text-right">{{tx.time * 1000|date:'medium'}}</td>
|
||||||
<td data-ng-show="!tx.time" class="text-muted text-right">N/A</td>
|
<td data-ng-show="!tx.time" class="text-muted text-right">N/A</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><strong>Mined Time </strong></td>
|
||||||
|
<td data-ng-show="tx.time" class="text-muted text-right">{{tx.blocktime * 1000|date:'medium'}}</td>
|
||||||
|
<td data-ng-show="!tx.time" class="text-muted text-right">N/A</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><strong>Included in Block </strong></td>
|
<td><strong>Included in Block </strong></td>
|
||||||
<td data-ng-show="tx.blockhash" class="text-muted text-right"> <a class="text-muted" href="/block/{{tx.blockhash}}">{{tx.blockhash}}</a>
|
<td data-ng-show="tx.blockhash" class="text-muted text-right"> <a href="/block/{{tx.blockhash}}">{{tx.blockhash}}</a>
|
||||||
<td data-ng-show="!tx.blockhash" class="text-muted text-right">Unconfirmed</td>
|
<td data-ng-show="!tx.blockhash" class="text-muted text-right">Unconfirmed</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr data-ng-show="tx.locktime">
|
<tr data-ng-show="tx.locktime">
|
||||||
<td><strong>LockTime </strong></td>
|
<td><strong>LockTime </strong></td>
|
||||||
<td class="text-muted text-right">{{tx.locktime}}</td>
|
<td class="text-muted text-right">{{tx.locktime}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr data-ng-show="tx.isCoinBase">
|
||||||
|
<td><strong>Coinbase</strong></td>
|
||||||
|
<td class="text-muted text-right">
|
||||||
|
<div class="ellipsis">
|
||||||
|
<span class="btn-copy ng-isolate-scope" clip-copy="tx.vin[0].coinbase"></span>
|
||||||
|
<span class="ng-binding">{{tx.vin[0].coinbase}}</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user