Skip to content

Commit df8b383

Browse files
committed
dashboard: fix txhash display
1 parent 9989c4e commit df8b383

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

dashboard/src/components/Accountant.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,10 @@ const pendingTransferColumns = [
152152
pendingTransferColumnHelper.accessor('data.0.tx_hash', {
153153
header: () => 'Tx',
154154
cell: (info) => (
155-
<ExplorerTxHash chain={info.row.original.key.emitter_chain} rawTxHash={info.getValue()} />
155+
<ExplorerTxHash
156+
chain={info.row.original.key.emitter_chain}
157+
rawTxHash={'0x' + Buffer.from(info.getValue(), 'base64').toString('hex')}
158+
/>
156159
),
157160
}),
158161
pendingTransferColumnHelper.accessor('data.0.signatures', {

0 commit comments

Comments
 (0)