From 055c1f2aa568e40de79d3459fbb696039b6b6bdf Mon Sep 17 00:00:00 2001 From: softsimon Date: Wed, 10 Nov 2021 16:11:04 +0400 Subject: [PATCH] Display previous output types fixes #917 --- .../transactions-list.component.html | 22 ++++++++++++------- 1 file changed, 14 insertions(+), 8 deletions(-) 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 657d88197..fb9c5a7be 100644 --- a/frontend/src/app/components/transactions-list/transactions-list.component.html +++ b/frontend/src/app/components/transactions-list/transactions-list.component.html @@ -100,10 +100,16 @@ nSequence {{ formatHex(vin.sequence) }} - - Previous output script - {{ vin.prevout.scriptpubkey_type ? ('(' + vin.prevout.scriptpubkey_type + ')') : '' }}" - + + + Previous output script + + + + Previous output type + {{ vin.prevout.scriptpubkey_type?.toUpperCase() }} + + @@ -176,10 +182,6 @@ - - - - @@ -192,6 +194,10 @@ + + + +
Type{{ vout.scriptpubkey_type.toUpperCase() }}
ScriptPubKey (ASM) OP_RETURN data {{ vout.scriptpubkey_asm | hex2ascii }}
Type{{ vout.scriptpubkey_type.toUpperCase() }}