diff --git a/frontend/src/app/components/transactions-list/transactions-list.component.html b/frontend/src/app/components/transactions-list/transactions-list.component.html index 07d5a0dbd..957253b4a 100644 --- a/frontend/src/app/components/transactions-list/transactions-list.component.html +++ b/frontend/src/app/components/transactions-list/transactions-list.component.html @@ -63,39 +63,38 @@ - - + - + - + - + - + - + - + - +
ScriptSig (ASM){{ vin.scriptsig_asm }}{{ vin.scriptsig_asm }}
ScriptSig (HEX){{ vin.scriptsig }}{{ vin.scriptsig }}
Witness{{ vin.witness.join(' ') }}{{ vin.witness.join(' ') }}
P2SH redeem script{{ vin.inner_redeemscript_asm }}{{ vin.inner_redeemscript_asm }}
P2WSH witness script{{ vin.inner_witnessscript_asm }}{{ vin.inner_witnessscript_asm }}
nSequence{{ formatHex(vin.sequence) }}{{ formatHex(vin.sequence) }}
Previous output script{{ vin.prevout.scriptpubkey_asm }} {{ vin.prevout.scriptpubkey_type ? ('(' + vin.prevout.scriptpubkey_type + ')') : '' }}{{ vin.prevout.scriptpubkey_asm }} {{ vin.prevout.scriptpubkey_type ? ('(' + vin.prevout.scriptpubkey_type + ')') : '' }}
@@ -154,24 +153,24 @@ - + - + - + - + - +
Type{{ vout.scriptpubkey_type.toUpperCase() }}{{ vout.scriptpubkey_type.toUpperCase() }}
scriptPubKey (ASM){{ vout.scriptpubkey_asm }}{{ vout.scriptpubkey_asm }}
scriptPubKey (HEX){{ vout.scriptpubkey }}{{ vout.scriptpubkey }}
OP_RETURN data{{ vout.scriptpubkey_asm | hex2ascii }}{{ vout.scriptpubkey_asm | hex2ascii }}
diff --git a/frontend/src/app/components/transactions-list/transactions-list.component.scss b/frontend/src/app/components/transactions-list/transactions-list.component.scss index 8cfc8212a..6da7e6202 100644 --- a/frontend/src/app/components/transactions-list/transactions-list.component.scss +++ b/frontend/src/app/components/transactions-list/transactions-list.component.scss @@ -81,18 +81,21 @@ .scriptmessage.longer { max-width: 280px !important; } + + .details-table td:first-child { + white-space: pre-wrap; + } } .details-table { margin-top: 5px; - max-width: 500px; } .details-table td { padding: 0.75rem; } -.script-details { +.details-table td:nth-child(2) { word-break: break-all; white-space: normal; font-family: "Courier New", Courier, monospace;