Skip to content

Commit 16b896b

Browse files
committed
Fix txs fee
1 parent eeb554c commit 16b896b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/modules/block/BlockOverview.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ const handleViewRawTransactions = () => {
710710
</td>
711711
<td>
712712
<NuxtLink :to="`/tx/${tx.hash}`">
713-
<AmountInCurrency :amount="{ value: block.stats.fee, decimal: 6 }" :styles="{ amount: { size: '13' }, currency: { size: '13' } }" />
713+
<AmountInCurrency :amount="{ value: tx.fee, decimal: 6 }" :styles="{ amount: { size: '13' }, currency: { size: '13' } }" />
714714
</NuxtLink>
715715
</td>
716716
</tr>

0 commit comments

Comments
 (0)