Adding prevout script. Fixed padding.

refs #46
This commit is contained in:
softsimon 2020-11-16 02:02:16 +07:00
parent 4136e8d332
commit c9e63a723a
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7

View File

@ -65,7 +65,7 @@
<tr *ngIf="displayDetails">
<td></td>
<td colspan="2">
<table class="table table-striped table-borderless details-table">
<table class="table table-striped table-borderless details-table mb-3">
<tbody>
<ng-template [ngIf]="vin.scriptsig">
<tr>
@ -93,6 +93,10 @@
<td>nSequence</td>
<td class="script-details">{{ formatHex(vin.sequence) }}</td>
</tr>
<tr *ngIf="vin.prevout">
<td>Previous output script</td>
<td class="script-details">{{ vin.prevout.scriptpubkey_asm }} {{ vin.prevout.scriptpubkey_type ? ('(' + vin.prevout.scriptpubkey_type + ')') : '' }}</td>
</tr>
</tbody>
</table>
</td>