showed coinbase info in the tx symmary
This commit is contained in:
parent
91b00a0088
commit
ae839a0fc8
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;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
#search { color: #fff; }
|
||||
}
|
||||
|
||||
@ -50,23 +50,32 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<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">N/A</td>
|
||||
</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>
|
||||
<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>
|
||||
</tr>
|
||||
<tr data-ng-show="tx.locktime">
|
||||
<td><strong>LockTime </strong></td>
|
||||
<td class="text-muted text-right">{{tx.locktime}}</td>
|
||||
</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>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user