From 464bed1331313a7218eeeeabc01bd37299591e74 Mon Sep 17 00:00:00 2001 From: Kristof Csillag Date: Thu, 28 Sep 2023 16:49:18 +0200 Subject: [PATCH] TX details: always show raw data (Even for encrypted transactions) --- .changelog/905.trivial.md | 1 + src/app/pages/TransactionDetailPage/index.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .changelog/905.trivial.md diff --git a/.changelog/905.trivial.md b/.changelog/905.trivial.md new file mode 100644 index 0000000000..eea028030d --- /dev/null +++ b/.changelog/905.trivial.md @@ -0,0 +1 @@ +TX details: always show raw data (Even for encrypted transactions) diff --git a/src/app/pages/TransactionDetailPage/index.tsx b/src/app/pages/TransactionDetailPage/index.tsx index 15b017034b..eee267123a 100644 --- a/src/app/pages/TransactionDetailPage/index.tsx +++ b/src/app/pages/TransactionDetailPage/index.tsx @@ -336,7 +336,7 @@ export const TransactionDetailView: FC<{
{t('common.gasLimit')}
{transaction.gas_limit.toLocaleString()}
- {!!transaction.body?.data && !transaction.encryption_envelope && ( + {!!transaction.body?.data && ( <>
{t('transaction.rawData')}