diff --git a/client/src/views/tx.js b/client/src/views/tx.js index 097b4eab..bfa9b14d 100644 --- a/client/src/views/tx.js +++ b/client/src/views/tx.js @@ -161,6 +161,14 @@ const txHeader = (tx, { tipHeight, mempool, feeEst, t
{t`Weight units`}
{`${formatNumber(tx.weight)} WU`}
+ { tx.discount_vsize != null &&
+
{t`Discount virtual size`}
+
{`${formatNumber(tx.discount_vsize)} vB`}
+
} + { tx.discount_weight != null &&
+
{t`Discount weight units`}
+
{`${formatNumber(tx.discount_weight)} WU`}
+
}
{t`Version`}
{tx.version}