Skip to content

Commit

Permalink
Merge pull request #905 from oasisprotocol/csillag/always-show-raw-data
Browse files Browse the repository at this point in the history
TX details: always show raw data
  • Loading branch information
csillag authored Sep 29, 2023
2 parents 0720dc4 + 3adbb2f commit 9cd5544
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .changelog/905.trivial.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TX details: always show raw data (Even for encrypted transactions)
2 changes: 1 addition & 1 deletion src/app/pages/TransactionDetailPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ export const TransactionDetailView: FC<{
<dt>{t('common.gasLimit')}</dt>
<dd>{transaction.gas_limit.toLocaleString()}</dd>

{!!transaction.body?.data && !transaction.encryption_envelope && (
{!!transaction.body?.data && (
<>
<dt>{t('transaction.rawData')}</dt>
<dd>
Expand Down

0 comments on commit 9cd5544

Please sign in to comment.