Skip to content

Commit

Permalink
dashboard: fix txhash display
Browse files Browse the repository at this point in the history
  • Loading branch information
panoel committed Mar 26, 2024
1 parent 9989c4e commit df8b383
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dashboard/src/components/Accountant.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,10 @@ const pendingTransferColumns = [
pendingTransferColumnHelper.accessor('data.0.tx_hash', {
header: () => 'Tx',
cell: (info) => (
<ExplorerTxHash chain={info.row.original.key.emitter_chain} rawTxHash={info.getValue()} />
<ExplorerTxHash
chain={info.row.original.key.emitter_chain}
rawTxHash={'0x' + Buffer.from(info.getValue(), 'base64').toString('hex')}
/>
),
}),
pendingTransferColumnHelper.accessor('data.0.signatures', {
Expand Down

0 comments on commit df8b383

Please sign in to comment.