showed coinbase info in the tx symmary

This commit is contained in:
Mario Colque 2014-05-27 10:39:28 -03:00
parent 91b00a0088
commit ae839a0fc8
5 changed files with 29 additions and 17 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -737,3 +737,6 @@ a.v_highlight_more {
margin-top: 15px;
}
@media (min-width: 768px) {
#search { color: #fff; }
}

View File

@ -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>